Skip to content

Commit ae98797

Browse files
committed
do not show branch graph when in filtering mode
1 parent 595aca2 commit ae98797

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pkg/gui/list_context_config.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,10 @@ func (gui *Gui) subCommitsListContext() IListContext {
229229
}
230230

231231
func (gui *Gui) shouldShowGraph() bool {
232+
if gui.State.Modes.Filtering.Active() {
233+
return false
234+
}
235+
232236
value := gui.UserConfig.Git.Log.ShowGraph
233237
switch value {
234238
case "always":

0 commit comments

Comments
 (0)