From e4e04cfa8ff031b2d043b2ae3b22faff10c3e574 Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Sun, 7 Aug 2022 19:13:19 +1000 Subject: [PATCH] fix hidden suggestions --- pkg/gui/context/suggestions_context.go | 11 ++++++----- pkg/gui/list_context_config.go | 5 ++++- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/pkg/gui/context/suggestions_context.go b/pkg/gui/context/suggestions_context.go index bbf3014f5..4be86244a 100644 --- a/pkg/gui/context/suggestions_context.go +++ b/pkg/gui/context/suggestions_context.go @@ -29,11 +29,12 @@ func NewSuggestionsContext( BasicViewModel: viewModel, ListContextTrait: &ListContextTrait{ Context: NewSimpleContext(NewBaseContext(NewBaseContextOpts{ - View: view, - WindowName: "suggestions", - Key: SUGGESTIONS_CONTEXT_KEY, - Kind: types.PERSISTENT_POPUP, - Focusable: true, + View: view, + WindowName: "suggestions", + Key: SUGGESTIONS_CONTEXT_KEY, + Kind: types.PERSISTENT_POPUP, + Focusable: true, + HasUncontrolledBounds: true, }), ContextCallbackOpts{ OnFocus: onFocus, OnFocusLost: onFocusLost, diff --git a/pkg/gui/list_context_config.go b/pkg/gui/list_context_config.go index 2b72714c5..d463c2ac5 100644 --- a/pkg/gui/list_context_config.go +++ b/pkg/gui/list_context_config.go @@ -270,7 +270,10 @@ func (gui *Gui) suggestionsListContext() *context.SuggestionsContext { }, nil, nil, - nil, + func(types.OnFocusLostOpts) error { + gui.deactivateConfirmationPrompt() + return nil + }, gui.c, ) }