Compare commits

...

1 Commits

Author SHA1 Message Date
Jesse Duffield
ae98797bca do not show branch graph when in filtering mode 2022-01-17 19:24:10 +11:00

View File

@@ -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":