summaryrefslogtreecommitdiffstats
path: root/pkg/gui/commits_panel.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2020-01-31 08:07:34 +1100
committerJesse Duffield <jessedduffield@gmail.com>2020-01-31 08:27:49 +1100
commit64782a433e6de09ed797266f463b2552ee6ae1c7 (patch)
treebebbbf5af082e1bedaa743ab20851681efcf599c /pkg/gui/commits_panel.go
parent44edb49a6e9c24128a14517f60d1a75f70a539f8 (diff)
fix segfault on line by line panel
The state object is sometimes undefined in the onclick method of the line by line panel. Because we set it to nil in a bunch of places, I've decided to just change the main context to 'normal' before setting it to nil anywhere. That way the keybindings for the line by line panel won't get executed and we won't get a segfault.
Diffstat (limited to 'pkg/gui/commits_panel.go')
-rw-r--r--pkg/gui/commits_panel.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/gui/commits_panel.go b/pkg/gui/commits_panel.go
index abc6b47ec..d25d9b239 100644
--- a/pkg/gui/commits_panel.go
+++ b/pkg/gui/commits_panel.go
@@ -49,7 +49,7 @@ func (gui *Gui) handleCommitSelect(g *gocui.Gui, v *gocui.View) error {
gui.getMainView().Title = "Patch"
gui.getSecondaryView().Title = "Custom Patch"
- gui.State.Panels.LineByLine = nil
+ gui.handleEscapeLineByLinePanel()
commit := gui.getSelectedCommit(g)
if commit == nil {