style: Make commit message in status bar use reverse video

This commit is contained in:
n loewen (aider) 2025-06-08 00:27:45 +01:00
parent 8bae7e1cfe
commit a87c324020
1 changed files with 1 additions and 1 deletions

View File

@ -412,7 +412,7 @@ def draw_status_bars(stdscr, state):
message_x = left_margin
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:
pass