From a87c32402027621cd8751623f5e108361f39ec1d Mon Sep 17 00:00:00 2001 From: "n loewen (aider)" Date: Sun, 8 Jun 2025 00:27:45 +0100 Subject: [PATCH] style: Make commit message in status bar use reverse video --- gtm2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtm2.py b/gtm2.py index 17f5688..001d674 100755 --- a/gtm2.py +++ b/gtm2.py @@ -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