summaryrefslogtreecommitdiffstats
path: root/pkg/gui/undoing.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/gui/undoing.go')
-rw-r--r--pkg/gui/undoing.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/gui/undoing.go b/pkg/gui/undoing.go
index 09e1a0328..72a4ef302 100644
--- a/pkg/gui/undoing.go
+++ b/pkg/gui/undoing.go
@@ -110,6 +110,8 @@ func (gui *Gui) reflogUndo() error {
EnvVars: undoEnvVars,
WaitingStatus: undoingStatus,
})
+ case CURRENT_REBASE:
+ // do nothing
}
gui.Log.Error("didn't match on the user action when trying to undo")
@@ -146,6 +148,8 @@ func (gui *Gui) reflogRedo() error {
EnvVars: redoEnvVars,
WaitingStatus: redoingStatus,
})
+ case CURRENT_REBASE:
+ // do nothing
}
gui.Log.Error("didn't match on the user action when trying to redo")