From 045549949ad788b2c6c4f6d8dcb15bec6194dbcd Mon Sep 17 00:00:00 2001 From: n loewen Date: Sat, 7 Jun 2025 23:37:16 +0100 Subject: [PATCH] fix: Adjust commit message display position in status bar --- gtm2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtm2.py b/gtm2.py index 170f1c0..6d16b21 100755 --- a/gtm2.py +++ b/gtm2.py @@ -415,7 +415,7 @@ def draw_status_bars(stdscr, state): commit_message = commit_message[:max_msg_width-3] + "..." try: - stdscr.addstr(state.height - 1, 0, commit_message, status_attr) + stdscr.addstr(state.height - 1, 1, commit_message, status_attr) except curses.error: pass