From da8ef6913304c16741eaab73949f9029d97a863e Mon Sep 17 00:00:00 2001 From: Stefan Haller Date: Sun, 14 Jun 2026 17:57:38 +0200 Subject: [PATCH] Give the submodules and reflog views standalone titles These two views only ever appeared as tabs (of the files and commits panels), so unlike the other side views they had no title set; the tab strip supplied their label. Once a tab can be promoted to its own panel they can appear without a tab strip, so set their titles like the others. This has no effect in the default layout, where both are always tabs. Co-Authored-By: Claude Opus 4.8 (1M context) --- pkg/gui/views.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/gui/views.go b/pkg/gui/views.go index bcd0b166e..17cbf3316 100644 --- a/pkg/gui/views.go +++ b/pkg/gui/views.go @@ -182,10 +182,12 @@ func (gui *Gui) configureViewProperties() { gui.Views.Stash.Title = gui.c.Tr.StashTitle gui.Views.Commits.Title = gui.c.Tr.CommitsTitle + gui.Views.ReflogCommits.Title = gui.c.Tr.ReflogCommitsTitle gui.Views.CommitFiles.Title = gui.c.Tr.CommitFiles gui.Views.Branches.Title = gui.c.Tr.BranchesTitle gui.Views.Remotes.Title = gui.c.Tr.RemotesTitle gui.Views.Worktrees.Title = gui.c.Tr.WorktreesTitle + gui.Views.Submodules.Title = gui.c.Tr.SubmodulesTitle gui.Views.Tags.Title = gui.c.Tr.TagsTitle gui.Views.Files.Title = gui.c.Tr.FilesTitle gui.Views.PatchBuilding.Title = gui.c.Tr.Patch