summaryrefslogtreecommitdiffstats
path: root/pkg/gui/controllers/local_commits_controller.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-05-08 14:23:32 +1000
committerJesse Duffield <jessedduffield@gmail.com>2022-05-08 14:26:18 +1000
commit6f8063217ddf132dca36b75affaa7f7273f89d9d (patch)
tree871c1b76adf464b11fe04c43bbd2a4a7ac5d452e /pkg/gui/controllers/local_commits_controller.go
parent125e948d82c33226f92a1ebe18361633116370d3 (diff)
rename displayString to label for menu items
Diffstat (limited to 'pkg/gui/controllers/local_commits_controller.go')
-rw-r--r--pkg/gui/controllers/local_commits_controller.go36
1 files changed, 18 insertions, 18 deletions
diff --git a/pkg/gui/controllers/local_commits_controller.go b/pkg/gui/controllers/local_commits_controller.go
index 7684d6469..7d0f144cd 100644
--- a/pkg/gui/controllers/local_commits_controller.go
+++ b/pkg/gui/controllers/local_commits_controller.go
@@ -470,7 +470,7 @@ func (self *LocalCommitsController) createRevertMergeCommitMenu(commit *models.C
}
menuItems[i] = &types.MenuItem{
- DisplayString: fmt.Sprintf("%s: %s", utils.SafeTruncate(parentSha, 8), message),
+ Label: fmt.Sprintf("%s: %s", utils.SafeTruncate(parentSha, 8), message),
OnPress: func() error {
parentNumber := i + 1
self.c.LogAction(self.c.Tr.Actions.RevertCommit)
@@ -570,7 +570,7 @@ func (self *LocalCommitsController) handleOpenLogMenu() error {
Title: self.c.Tr.LogMenuTitle,
Items: []*types.MenuItem{
{
- DisplayString: self.c.Tr.ToggleShowGitGraphAll,
+ Label: self.c.Tr.ToggleShowGitGraphAll,
OnPress: func() error {
self.context().SetShowWholeGitGraph(!self.context().GetShowWholeGitGraph())
@@ -586,8 +586,8 @@ func (self *LocalCommitsController) handleOpenLogMenu() error {
},
},
{
- DisplayString: self.c.Tr.ShowGitGraph,
- OpensMenu: true,
+ Label: self.c.Tr.ShowGitGraph,
+ OpensMenu: true,
OnPress: func() error {
onPress := func(value string) func() error {
return func() error {
@@ -599,24 +599,24 @@ func (self *LocalCommitsController) handleOpenLogMenu() error {
Title: self.c.Tr.LogMenuTitle,
Items: []*types.MenuItem{
{
- DisplayString: "always",
- OnPress: onPress("always"),
+ Label: "always",
+ OnPress: onPress("always"),
},
{
- DisplayString: "never",
- OnPress: onPress("never"),
+ Label: "never",
+ OnPress: onPress("never"),
},
{
- DisplayString: "when maximised",
- OnPress: onPress("when-maximised"),
+ Label: "when maximised",
+ OnPress: onPress("when-maximised"),
},
},
})
},
},
{
- DisplayString: self.c.Tr.SortCommits,
- OpensMenu: true,
+ Label: self.c.Tr.SortCommits,
+ OpensMenu: true,
OnPress: func() error {
onPress := func(value string) func() error {
return func() error {
@@ -636,16 +636,16 @@ func (self *LocalCommitsController) handleOpenLogMenu() error {
Title: self.c.Tr.LogMenuTitle,
Items: []*types.MenuItem{
{
- DisplayString: "topological (topo-order)",
- OnPress: onPress("topo-order"),
+ Label: "topological (topo-order)",
+ OnPress: onPress("topo-order"),
},
{
- DisplayString: "date-order",
- OnPress: onPress("date-order"),
+ Label: "date-order",
+ OnPress: onPress("date-order"),
},
{
- DisplayString: "author-date-order",
- OnPress: onPress("author-date-order"),
+ Label: "author-date-order",
+ OnPress: onPress("author-date-order"),
},
},
})