summaryrefslogtreecommitdiffstats
path: root/pkg/gui/controllers/base_controller.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/gui/controllers/base_controller.go')
-rw-r--r--pkg/gui/controllers/base_controller.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/gui/controllers/base_controller.go b/pkg/gui/controllers/base_controller.go
index e510c1a9f..db7ad7a40 100644
--- a/pkg/gui/controllers/base_controller.go
+++ b/pkg/gui/controllers/base_controller.go
@@ -14,3 +14,7 @@ func (self *baseController) GetKeybindings(opts types.KeybindingsOpts) []*types.
func (self *baseController) GetMouseKeybindings(opts types.KeybindingsOpts) []*gocui.ViewMouseBinding {
return nil
}
+
+func (self *baseController) GetOnClick() func() error {
+ return nil
+}