summaryrefslogtreecommitdiffstats
path: root/pkg/gui/controllers/files_controller.go
diff options
context:
space:
mode:
authorAndrew Hynes <andrew.hynes@colabsoftware.com>2022-07-03 19:44:07 -0230
committerAndrew Hynes <andrew.hynes@colabsoftware.com>2022-09-15 21:48:49 -0230
commitc7733aa5e5249e30c9144fde4a6db61aeed0c2ec (patch)
treea55f2cf43ad0c8f0282b2073413ac71e3d714bc9 /pkg/gui/controllers/files_controller.go
parenta0fd47348bd078c7b60d389eec58ce8673127bfa (diff)
refactor: rename method to `StashIncludeUntrackedChanges`
Diffstat (limited to 'pkg/gui/controllers/files_controller.go')
-rw-r--r--pkg/gui/controllers/files_controller.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/gui/controllers/files_controller.go b/pkg/gui/controllers/files_controller.go
index 6e20af51a..19c296562 100644
--- a/pkg/gui/controllers/files_controller.go
+++ b/pkg/gui/controllers/files_controller.go
@@ -773,7 +773,7 @@ func (self *FilesController) createStashMenu() error {
{
Label: self.c.Tr.LcStashIncludeUntrackedChanges,
OnPress: func() error {
- return self.handleStashSave(self.git.Stash.StashUntrackedChanges, self.c.Tr.Actions.StashIncludeUntrackedChanges, self.c.Tr.NoFilesToStash)
+ return self.handleStashSave(self.git.Stash.StashIncludeUntrackedChanges, self.c.Tr.Actions.StashIncludeUntrackedChanges, self.c.Tr.NoFilesToStash)
},
Key: 'U',
},