Add snapshot next/prev MIDI bindings
This commit is contained in:
@@ -602,7 +602,9 @@ export class PiPedalModel //implements PiPedalModel
|
||||
(
|
||||
[
|
||||
MidiBinding.systemBinding("prevProgram"),
|
||||
MidiBinding.systemBinding("nextProgram")
|
||||
MidiBinding.systemBinding("nextProgram"),
|
||||
MidiBinding.systemBinding("prevSnapshot"),
|
||||
MidiBinding.systemBinding("nextSnapshot")
|
||||
]
|
||||
);
|
||||
zoomedUiControl: ObservableProperty<ZoomedControlInfo | undefined> = new ObservableProperty<ZoomedControlInfo | undefined>(undefined);
|
||||
|
||||
@@ -159,6 +159,11 @@ export const SystemMidiBindingDialog =
|
||||
}
|
||||
else if (item.symbol === "snapshot6") {
|
||||
displayName = "Snapshot 6";
|
||||
}
|
||||
else if (item.symbol === "nextSnapshot") {
|
||||
displayName = "Next Snapshot";
|
||||
} else if (item.symbol === "prevSnapshot") {
|
||||
displayName = "Previous Snapshot";
|
||||
} else if (item.symbol === "startHotspot") {
|
||||
displayName = "Enable Hotspot";
|
||||
} else if (item.symbol === "stopHotspot") {
|
||||
|
||||
Reference in New Issue
Block a user