mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-09-10 07:36:27 -04:00
Better redrawing after toggling "ignore whitespace"
There's no need for refreshing anything; all that's needed is to re-focus the selected list item. This way it will also work in other panels, which we are about to add in the next commit.
This commit is contained in:
parent
946c1dff99
commit
bbaeab68e1
|
|
@ -1,5 +1,9 @@
|
|||
package gui
|
||||
|
||||
import (
|
||||
"github.com/jesseduffield/lazygit/pkg/gui/types"
|
||||
)
|
||||
|
||||
func (gui *Gui) toggleWhitespaceInDiffView() error {
|
||||
gui.IgnoreWhitespaceInDiffView = !gui.IgnoreWhitespaceInDiffView
|
||||
|
||||
|
|
@ -9,5 +13,5 @@ func (gui *Gui) toggleWhitespaceInDiffView() error {
|
|||
}
|
||||
gui.c.Toast(toastMessage)
|
||||
|
||||
return gui.refreshFilesAndSubmodules()
|
||||
return gui.currentSideListContext().HandleFocus(types.OnFocusOpts{})
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue