From ddfec40f2b5d90e7155f5c29d664e0643c6c13a3 Mon Sep 17 00:00:00 2001 From: Stefan Haller Date: Wed, 28 Feb 2024 17:45:58 +0100 Subject: [PATCH] fixup! Fix showing the "YOU ARE HERE" marker for old-style non-interactive rebases --- pkg/gui/presentation/commits.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]