diff options
| -rw-r--r-- | client/ui.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/ui.go b/client/ui.go index d3692ce..65983c3 100644 --- a/client/ui.go +++ b/client/ui.go @@ -50,7 +50,7 @@ func (a *application) onInput(ev tui.Event) { prompt.Input().Update(ev) wm := ev.Key.WithoutMods() - if wm > '0' && wm <= '9' { + if wm > '0' && wm <= '9' && ev.Key & keys.Alt != 0 { i := wm - '1' if int(i) < len(a.channelList) { a.goTo(a.channelList[i].location) |
