fix: Adjust commit message display position in status bar
This commit is contained in:
parent
dc119e472d
commit
045549949a
2
gtm2.py
2
gtm2.py
|
|
@ -415,7 +415,7 @@ def draw_status_bars(stdscr, state):
|
||||||
commit_message = commit_message[:max_msg_width-3] + "..."
|
commit_message = commit_message[:max_msg_width-3] + "..."
|
||||||
|
|
||||||
try:
|
try:
|
||||||
stdscr.addstr(state.height - 1, 0, commit_message, status_attr)
|
stdscr.addstr(state.height - 1, 1, commit_message, status_attr)
|
||||||
except curses.error:
|
except curses.error:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue