From 007b406b14c10ad049e0633a7eba0d20b8259f17 Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Thu, 11 May 2023 19:00:41 +1000 Subject: [PATCH] remove duplicate method --- pkg/gui/gui_common.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkg/gui/gui_common.go b/pkg/gui/gui_common.go index 5a9eb9214..dfed29c44 100644 --- a/pkg/gui/gui_common.go +++ b/pkg/gui/gui_common.go @@ -80,10 +80,6 @@ func (self *guiCommon) ActivateContext(context types.Context) error { return self.gui.State.ContextMgr.ActivateContext(context, types.OnFocusOpts{}) } -func (self *guiCommon) ActivateContext(context types.Context) error { - return self.gui.activateContext(context, types.OnFocusOpts{}) -} - func (self *guiCommon) GetAppState() *config.AppState { return self.gui.Config.GetAppState() }