Fix #6419
This commit is contained in:
parent
83ff14cbd1
commit
b1d2978cea
1 changed files with 2 additions and 2 deletions
|
|
@ -497,10 +497,10 @@ func (self *handler) on_key_event(event *loop.KeyEvent) (err error) {
|
|||
} else if event.MatchesPressOrRepeat("f4") || event.MatchesPressOrRepeat("ctrl+4") {
|
||||
event.Handled = true
|
||||
self.switch_mode(FAVORITES)
|
||||
} else if event.MatchesPressOrRepeat("tab") || event.MatchesPressOrRepeat("ctrl+]") {
|
||||
} else if event.MatchesPressOrRepeat("ctrl+tab") || event.MatchesPressOrRepeat("ctrl+]") {
|
||||
event.Handled = true
|
||||
self.next_mode(1)
|
||||
} else if event.MatchesPressOrRepeat("shift+tab") || event.MatchesPressOrRepeat("ctrl+[") {
|
||||
} else if event.MatchesPressOrRepeat("ctrl+shift+tab") || event.MatchesPressOrRepeat("ctrl+[") {
|
||||
event.Handled = true
|
||||
self.next_mode(-1)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue