summaryrefslogtreecommitdiffstats
path: root/pkg/gui/controllers/toggle_whitespace_action.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/gui/controllers/toggle_whitespace_action.go')
-rw-r--r--pkg/gui/controllers/toggle_whitespace_action.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkg/gui/controllers/toggle_whitespace_action.go b/pkg/gui/controllers/toggle_whitespace_action.go
index 175738b59..41232a769 100644
--- a/pkg/gui/controllers/toggle_whitespace_action.go
+++ b/pkg/gui/controllers/toggle_whitespace_action.go
@@ -1,6 +1,8 @@
package controllers
import (
+ "errors"
+
"github.com/jesseduffield/lazygit/pkg/gui/context"
"github.com/jesseduffield/lazygit/pkg/gui/types"
"github.com/samber/lo"
@@ -20,7 +22,7 @@ func (self *ToggleWhitespaceAction) Call() error {
if lo.Contains(contextsThatDontSupportIgnoringWhitespace, self.c.CurrentContext().GetKey()) {
// Ignoring whitespace is not supported in these views. Let the user
// know that it's not going to work in case they try to turn it on.
- return self.c.ErrorMsg(self.c.Tr.IgnoreWhitespaceNotSupportedHere)
+ return errors.New(self.c.Tr.IgnoreWhitespaceNotSupportedHere)
}
self.c.GetAppState().IgnoreWhitespaceInDiffView = !self.c.GetAppState().IgnoreWhitespaceInDiffView