fix: Adjust commit message display position in status bar

This commit is contained in:
n loewen 2025-06-07 23:37:16 +01:00 committed by n loewen (aider)
parent dc119e472d
commit 045549949a
1 changed files with 1 additions and 1 deletions

View File

@ -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