From 87da94851a377e790e1d3a2405d591273ffbbf6d Mon Sep 17 00:00:00 2001 From: n loewen Date: Sat, 7 Jun 2025 23:45:55 +0100 Subject: [PATCH] =?UTF-8?q?style:=20Change=20status=20bar=20divider=20char?= =?UTF-8?q?acter=20from=20"=E2=96=8C"=20to=20"=E2=96=90"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gtm2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtm2.py b/gtm2.py index 2aaee6d..a7252fe 100755 --- a/gtm2.py +++ b/gtm2.py @@ -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