style: Make commit message in status bar use reverse video
This commit is contained in:
parent
8bae7e1cfe
commit
a87c324020
2
gtm2.py
2
gtm2.py
|
|
@ -412,7 +412,7 @@ def draw_status_bars(stdscr, state):
|
||||||
message_x = left_margin
|
message_x = left_margin
|
||||||
|
|
||||||
try:
|
try:
|
||||||
stdscr.addstr(state.height - 1, message_x, commit_message, status_attr)
|
stdscr.addstr(state.height - 1, message_x, commit_message, curses.A_REVERSE)
|
||||||
except curses.error:
|
except curses.error:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue