mirror of
https://github.com/vsariola/sointu.git
synced 2025-07-14 02:54:37 -04:00
fix(tracker): accept '<' and '>' keycodes for changing octave too
Probably fixes issue #13, but cannot test as I don't have a Mac.
This commit is contained in:
@ -186,7 +186,7 @@ func (t *Tracker) KeyEvent(w *app.Window, e key.Event) bool {
|
||||
t.PlayPosition.Row--
|
||||
}
|
||||
return true
|
||||
case `\`:
|
||||
case `\`, `<`, `>`:
|
||||
if e.Modifiers.Contain(key.ModShift) {
|
||||
return t.ChangeOctave(1)
|
||||
}
|
||||
|
Reference in New Issue
Block a user