1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-24 05:36:19 +02:00

change formatting for menu items

This commit is contained in:
Francisco Miamoto 2021-09-12 15:34:37 -03:00 committed by Jesse Duffield
parent 7888ff6cb9
commit eff6c4283b

View File

@ -593,12 +593,14 @@ func (gui *Gui) createTagMenu(commitSha string) error {
displayString: gui.Tr.LcLightweightTag,
onPress: func() error {
return gui.handleCreateLightweightTag(commitSha)
}},
},
},
{
displayString: gui.Tr.LcAnnotatedTag,
onPress: func() error {
return gui.handleCreateAnnotatedTag(commitSha)
}},
},
},
}
return gui.createMenu(gui.Tr.TagMenuTitle, items, createMenuOptions{showCancel: true})