mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-09-10 23:56:24 -04:00
do not show branch graph when in filtering mode
This commit is contained in:
parent
595aca2a4b
commit
ae98797bca
|
|
@ -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":
|
||||
|
|
|
|||
Loading…
Reference in a new issue