From d019626342991be940fef298df752f98d4e1847d Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Mon, 17 Jan 2022 19:24:10 +1100 Subject: do not show branch graph when in filtering mode --- pkg/gui/list_context_config.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'pkg') diff --git a/pkg/gui/list_context_config.go b/pkg/gui/list_context_config.go index 55f2b7895..e5ad6c034 100644 --- a/pkg/gui/list_context_config.go +++ b/pkg/gui/list_context_config.go @@ -229,6 +229,10 @@ func (gui *Gui) subCommitsListContext() IListContext { } func (gui *Gui) shouldShowGraph() bool { + if gui.State.Modes.Filtering.Active() { + return false + } + value := gui.UserConfig.Git.Log.ShowGraph switch value { case "always": -- cgit v1.2.3