1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-08-06 22:33:07 +02:00

Add tooltips for commit log menu

This commit is contained in:
Stefan Haller
2025-07-08 17:20:50 +02:00
parent 9650753db6
commit 6bfcb3d6f0
2 changed files with 6 additions and 0 deletions

View File

@ -1180,6 +1180,7 @@ func (self *LocalCommitsController) handleOpenLogMenu() error {
},
{
Label: self.c.Tr.ShowGitGraph,
Tooltip: self.c.Tr.ShowGitGraphTooltip,
OpensMenu: true,
OnPress: func() error {
currentValue := self.c.UserConfig().Git.Log.ShowGraph
@ -1215,6 +1216,7 @@ func (self *LocalCommitsController) handleOpenLogMenu() error {
},
{
Label: self.c.Tr.SortCommits,
Tooltip: self.c.Tr.SortCommitsTooltip,
OpensMenu: true,
OnPress: func() error {
currentValue := self.c.UserConfig().Git.Log.Order