summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pkg/gui/list_context_config.go4
1 files changed, 4 insertions, 0 deletions
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":