Use tab for keynav instead of alt-tab

This commit is contained in:
Sasha Koshka 2024-07-26 20:52:49 -04:00
parent 192e6c6235
commit 4deb581667

View File

@ -34,7 +34,7 @@ func (this *Hierarchy) HandleKeyDown (key input.Key, numberPad bool) {
})
if caught { return }
if key == input.KeyTab && this.modifiers.Alt {
if key == input.KeyTab {
if this.modifiers.Shift {
this.focusPrevious()
} else {