diff --git a/pkg/gui/keybindings.go b/pkg/gui/keybindings.go index 8eb0547df..c10f67623 100644 --- a/pkg/gui/keybindings.go +++ b/pkg/gui/keybindings.go @@ -193,12 +193,6 @@ func (self *Gui) GetInitialKeybindings() ([]*types.Binding, []*gocui.ViewMouseBi Tooltip: self.c.Tr.OpenCommandLogMenuTooltip, OpensMenu: true, }, - { - ViewName: "secondary", - Key: gocui.MouseWheelDown, - Modifier: gocui.ModNone, - Handler: self.scrollDownSecondary, - }, { ViewName: "main", Key: gocui.MouseWheelDown, @@ -213,6 +207,12 @@ func (self *Gui) GetInitialKeybindings() ([]*types.Binding, []*gocui.ViewMouseBi Description: self.c.Tr.ScrollUp, Alternative: "fn+down", }, + { + ViewName: "secondary", + Key: gocui.MouseWheelDown, + Modifier: gocui.ModNone, + Handler: self.scrollDownSecondary, + }, { ViewName: "secondary", Key: gocui.MouseWheelUp,