diff --git a/pkg/gui/keybindings.go b/pkg/gui/keybindings.go index 319576cd6..6275d5189 100644 --- a/pkg/gui/keybindings.go +++ b/pkg/gui/keybindings.go @@ -247,6 +247,16 @@ func (self *Gui) GetInitialKeybindings() ([]*types.Binding, []*gocui.ViewMouseBi Modifier: gocui.ModNone, Handler: self.scrollDownConfirmationPanel, }, + { + ViewName: "confirmation", + Key: gocui.MouseWheelUp, + Handler: self.scrollUpConfirmationPanel, + }, + { + ViewName: "confirmation", + Key: gocui.MouseWheelDown, + Handler: self.scrollDownConfirmationPanel, + }, { ViewName: "submodules", Key: opts.GetKey(opts.Config.Universal.CopyToClipboard),