mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-23 18:24:13 +08:00
pick-ui: show nomination type in the UI
Signed-off-by: Eric Engestrom <eric@engestrom.ch> Reviewed-by: Dylan Baker <dylan@pnwbakers.com> Cc: mesa-stable Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12289>
This commit is contained in:
parent
db14f2a932
commit
7ec42b5eda
@ -66,7 +66,8 @@ class CommitWidget(urwid.Text):
|
||||
_selectable = True
|
||||
|
||||
def __init__(self, ui: 'UI', commit: 'core.Commit'):
|
||||
super().__init__(f'{commit.sha[:10]} {commit.description}')
|
||||
reason = commit.nomination_type.name.ljust(6)
|
||||
super().__init__(f'{reason} {commit.sha[:10]} {commit.description}')
|
||||
self.ui = ui
|
||||
self.commit = commit
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user