summaryrefslogtreecommitdiffstats
path: root/pkg/gui/gui_common.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-08-01 21:36:17 +1000
committerJesse Duffield <jessedduffield@gmail.com>2022-08-01 21:38:57 +1000
commitfab2e14b55455be370d8514871d60bc59adfbf30 (patch)
tree081a4a6870b29ab8ba271e877a49dc2f39b56732 /pkg/gui/gui_common.go
parent81f80ce968f62facb2c16313cee769b83e61587b (diff)
fix issue caused by opening a menu over a prompt
Diffstat (limited to 'pkg/gui/gui_common.go')
-rw-r--r--pkg/gui/gui_common.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/gui/gui_common.go b/pkg/gui/gui_common.go
index 7d8354bf6..89abe92ba 100644
--- a/pkg/gui/gui_common.go
+++ b/pkg/gui/gui_common.go
@@ -43,7 +43,7 @@ func (self *guiCommon) PushContext(context types.Context, opts ...types.OnFocusO
}
func (self *guiCommon) PopContext() error {
- return self.gui.returnFromContext()
+ return self.gui.popContext()
}
func (self *guiCommon) CurrentContext() types.Context {