summaryrefslogtreecommitdiffstats
path: root/pkg/gui/patch_options_panel.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-01-31 22:11:34 +1100
committerJesse Duffield <jessedduffield@gmail.com>2022-03-17 19:13:40 +1100
commit2a1e3faa0c61cc8c2418310089485dbab268228f (patch)
tree742988b455946b12a84adccb950b8df5a631417b /pkg/gui/patch_options_panel.go
parenteb056576cfe7d97503ef1baf3e1730c87d63976f (diff)
resetting controllers on new repo
Diffstat (limited to 'pkg/gui/patch_options_panel.go')
-rw-r--r--pkg/gui/patch_options_panel.go20
1 files changed, 10 insertions, 10 deletions
diff --git a/pkg/gui/patch_options_panel.go b/pkg/gui/patch_options_panel.go
index c0333dad1..4eda367bd 100644
--- a/pkg/gui/patch_options_panel.go
+++ b/pkg/gui/patch_options_panel.go
@@ -67,7 +67,7 @@ func (gui *Gui) handleCreatePatchOptionsMenu() error {
}
func (gui *Gui) getPatchCommitIndex() int {
- for index, commit := range gui.State.Commits {
+ for index, commit := range gui.State.Model.Commits {
if commit.Sha == gui.git.Patch.PatchManager.To {
return index
}
@@ -101,8 +101,8 @@ func (gui *Gui) handleDeletePatchFromCommit() error {
return gui.c.WithWaitingStatus(gui.c.Tr.RebasingStatus, func() error {
commitIndex := gui.getPatchCommitIndex()
gui.c.LogAction(gui.c.Tr.Actions.RemovePatchFromCommit)
- err := gui.git.Patch.DeletePatchesFromCommit(gui.State.Commits, commitIndex)
- return gui.helpers.rebase.CheckMergeOrRebase(err)
+ err := gui.git.Patch.DeletePatchesFromCommit(gui.State.Model.Commits, commitIndex)
+ return gui.helpers.Rebase.CheckMergeOrRebase(err)
})
}
@@ -118,8 +118,8 @@ func (gui *Gui) handleMovePatchToSelectedCommit() error {
return gui.c.WithWaitingStatus(gui.c.Tr.RebasingStatus, func() error {
commitIndex := gui.getPatchCommitIndex()
gui.c.LogAction(gui.c.Tr.Actions.MovePatchToSelectedCommit)
- err := gui.git.Patch.MovePatchToSelectedCommit(gui.State.Commits, commitIndex, gui.State.Panels.Commits.SelectedLineIdx)
- return gui.helpers.rebase.CheckMergeOrRebase(err)
+ err := gui.git.Patch.MovePatchToSelectedCommit(gui.State.Model.Commits, commitIndex, gui.State.Panels.Commits.SelectedLineIdx)
+ return gui.helpers.Rebase.CheckMergeOrRebase(err)
})
}
@@ -136,12 +136,12 @@ func (gui *Gui) handleMovePatchIntoWorkingTree() error {
return gui.c.WithWaitingStatus(gui.c.Tr.RebasingStatus, func() error {
commitIndex := gui.getPatchCommitIndex()
gui.c.LogAction(gui.c.Tr.Actions.MovePatchIntoIndex)
- err := gui.git.Patch.MovePatchIntoIndex(gui.State.Commits, commitIndex, stash)
- return gui.helpers.rebase.CheckMergeOrRebase(err)
+ err := gui.git.Patch.MovePatchIntoIndex(gui.State.Model.Commits, commitIndex, stash)
+ return gui.helpers.Rebase.CheckMergeOrRebase(err)
})
}
- if gui.helpers.workingTree.IsWorkingTreeDirty() {
+ if gui.helpers.WorkingTree.IsWorkingTreeDirty() {
return gui.c.Ask(types.AskOpts{
Title: gui.c.Tr.MustStashTitle,
Prompt: gui.c.Tr.MustStashWarning,
@@ -166,8 +166,8 @@ func (gui *Gui) handlePullPatchIntoNewCommit() error {
return gui.c.WithWaitingStatus(gui.c.Tr.RebasingStatus, func() error {
commitIndex := gui.getPatchCommitIndex()
gui.c.LogAction(gui.c.Tr.Actions.MovePatchIntoNewCommit)
- err := gui.git.Patch.PullPatchIntoNewCommit(gui.State.Commits, commitIndex)
- return gui.helpers.rebase.CheckMergeOrRebase(err)
+ err := gui.git.Patch.PullPatchIntoNewCommit(gui.State.Model.Commits, commitIndex)
+ return gui.helpers.Rebase.CheckMergeOrRebase(err)
})
}