mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-08 10:40:11 +01:00
pick-ui: show commit sha in the pick list
Useful to get more context when a manual merge is needed, for instance. Signed-off-by: Eric Engestrom <eric@engestrom.ch> Reviewed-by: Dylan Baker <dylan@pnwbakers.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4651>
This commit is contained in:
parent
32451a15ec
commit
57e65cabd4
1 changed files with 1 additions and 1 deletions
|
|
@ -67,7 +67,7 @@ class CommitWidget(urwid.Text):
|
|||
_selectable = True
|
||||
|
||||
def __init__(self, ui: 'UI', commit: 'core.Commit'):
|
||||
super().__init__(commit.description)
|
||||
super().__init__(f'{commit.sha[:10]} {commit.description}')
|
||||
self.ui = ui
|
||||
self.commit = commit
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue