summaryrefslogtreecommitdiffstats
path: root/pkg/gui/global_handlers.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-01-30 10:45:25 +1100
committerJesse Duffield <jessedduffield@gmail.com>2022-03-17 19:13:40 +1100
commitf0c81ea6dc420786ec58b0f1402d7696e221999d (patch)
tree4bc5e77decdb5682958f094f9f7891fa6f97905c /pkg/gui/global_handlers.go
parentf97de692e32be50a54a93b75d3686da0495275cb (diff)
remove redundant popup checks
Diffstat (limited to 'pkg/gui/global_handlers.go')
-rw-r--r--pkg/gui/global_handlers.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/pkg/gui/global_handlers.go b/pkg/gui/global_handlers.go
index 380704fbc..04f7efb61 100644
--- a/pkg/gui/global_handlers.go
+++ b/pkg/gui/global_handlers.go
@@ -181,10 +181,6 @@ func (gui *Gui) handleRefresh() error {
}
func (gui *Gui) handleMouseDownMain() error {
- if gui.popupPanelFocused() {
- return nil
- }
-
switch gui.currentSideContext() {
case gui.State.Contexts.Files:
// set filename, set primary/secondary selected, set line number, then switch context
@@ -199,10 +195,6 @@ func (gui *Gui) handleMouseDownMain() error {
}
func (gui *Gui) handleMouseDownSecondary() error {
- if gui.popupPanelFocused() {
- return nil
- }
-
switch gui.g.CurrentView() {
case gui.Views.Files:
return gui.Controllers.Files.EnterFile(types.OnFocusOpts{ClickedViewName: "secondary", ClickedViewLineIdx: gui.Views.Secondary.SelectedLineIdx()})