1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-05-29 23:17:32 +02:00

do not show branch graph when in filtering mode

This commit is contained in:
Jesse Duffield 2022-01-17 19:24:10 +11:00
parent 595aca2a4b
commit d019626342

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