summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Haller <stefan@haller-berlin.de>2024-02-28 17:45:58 +0100
committerStefan Haller <stefan@haller-berlin.de>2024-02-28 17:45:58 +0100
commitddfec40f2b5d90e7155f5c29d664e0643c6c13a3 (patch)
tree93bce14380ce512987ebafb28c87c3842630648e
parentd5e06309676c649caf2644eea593964eb18943de (diff)
fixup! Fix showing the "YOU ARE HERE" marker for old-style non-interactive rebasesfix-support-for-old-style-non-interactive-rebase
-rw-r--r--pkg/gui/presentation/commits.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/gui/presentation/commits.go b/pkg/gui/presentation/commits.go
index 9b4730a43..62552c33c 100644
--- a/pkg/gui/presentation/commits.go
+++ b/pkg/gui/presentation/commits.go
@@ -68,7 +68,7 @@ func GetCommitListDisplayStrings(
return nil
}
- // this is where my non-TODO commits begin
+ // this is where my "normal" commits begin (the non-rebasing ones)
rebaseOffset := utils.Min(indexOfFirstNonRebasingCommit(commits), endIdx)
filteredCommits := commits[startIdx:endIdx]