style: Use "▌" character for status bar divider to match colors

This commit is contained in:
n loewen (aider) 2025-06-07 23:41:23 +01:00
parent 27b5047704
commit 4e03ae2736
1 changed files with 4 additions and 2 deletions

View File

@ -393,9 +393,11 @@ def draw_status_bars(stdscr, state):
except curses.error: except curses.error:
pass pass
# Draw divider in status bar # Draw divider in status bar with left and right colors
try: try:
stdscr.addch(state.height - 2, state.divider_col, "") # Use the left half block character "▌" which can show both colors
# First draw with left side color
stdscr.addch(state.height - 2, state.divider_col, "", left_attr)
except curses.error: except curses.error:
pass pass