style: Change status bar divider character from "▌" to "▐"

This commit is contained in:
n loewen 2025-06-07 23:45:55 +01:00 committed by n loewen (aider)
parent 4e03ae2736
commit 87da94851a
1 changed files with 2 additions and 2 deletions

View File

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