summaryrefslogtreecommitdiffstats
path: root/pkg/gui/context/sub_commits_context.go
diff options
context:
space:
mode:
authorStefan Haller <stefan@haller-berlin.de>2024-02-24 12:27:27 +0100
committerStefan Haller <stefan@haller-berlin.de>2024-03-02 10:17:58 +0100
commit418b316fabf394e14a7c1153f514a52bee48ec39 (patch)
treeee8de63de2cf293f77b1c74d15f6cca4704992c7 /pkg/gui/context/sub_commits_context.go
parentfd8ce7d779902de3db5b5c9886ef62ed08cae8aa (diff)
Rename showBranchMarkerForHeadCommit parameter to hasRebaseUpdateRefsConfig
Name it after what it is rather than what it is used for. In the next commit we will use it for another condition.
Diffstat (limited to 'pkg/gui/context/sub_commits_context.go')
-rw-r--r--pkg/gui/context/sub_commits_context.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/gui/context/sub_commits_context.go b/pkg/gui/context/sub_commits_context.go
index 7a797e61d..d98188b91 100644
--- a/pkg/gui/context/sub_commits_context.go
+++ b/pkg/gui/context/sub_commits_context.go
@@ -55,13 +55,13 @@ func NewSubCommitsContext(
if viewModel.GetShowBranchHeads() {
branches = c.Model().Branches
}
- showBranchMarkerForHeadCommit := c.Git().Config.GetRebaseUpdateRefs()
+ hasRebaseUpdateRefsConfig := c.Git().Config.GetRebaseUpdateRefs()
return presentation.GetCommitListDisplayStrings(
c.Common,
c.Model().SubCommits,
branches,
viewModel.GetRef().RefName(),
- showBranchMarkerForHeadCommit,
+ hasRebaseUpdateRefsConfig,
c.State().GetRepoState().GetScreenMode() != types.SCREEN_NORMAL,
c.Modes().CherryPicking.SelectedShaSet(),
c.Modes().Diffing.Ref,