summaryrefslogtreecommitdiffstats
path: root/pkg/gui/controllers/custom_patch_options_menu_action.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/gui/controllers/custom_patch_options_menu_action.go')
-rw-r--r--pkg/gui/controllers/custom_patch_options_menu_action.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/gui/controllers/custom_patch_options_menu_action.go b/pkg/gui/controllers/custom_patch_options_menu_action.go
index f5099ae2e..f24607597 100644
--- a/pkg/gui/controllers/custom_patch_options_menu_action.go
+++ b/pkg/gui/controllers/custom_patch_options_menu_action.go
@@ -237,7 +237,7 @@ func (self *CustomPatchOptionsMenuAction) handleApplyPatch(reverse bool) error {
action = "Apply patch in reverse"
}
self.c.LogAction(action)
- if err := self.c.Git().Patch.ApplyCustomPatch(reverse); err != nil {
+ if err := self.c.Git().Patch.ApplyCustomPatch(reverse, true); err != nil {
return err
}
return self.c.Refresh(types.RefreshOptions{Mode: types.ASYNC})