From 677fad43b8889b07cbfadd551ee141a1d4e0154d Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Wed, 20 Oct 2021 17:12:52 -0400 Subject: Fix showing cursor with default colors --- bin/shotty.l | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin') diff --git a/bin/shotty.l b/bin/shotty.l index 42375ac8..6eacdc4f 100644 --- a/bin/shotty.l +++ b/bin/shotty.l @@ -487,8 +487,8 @@ static void span(const struct Cell *prev, const struct Cell *cell) { int attr = cell->attr; int bg = (attr & Reverse ? cell->fg : cell->bg); int fg = (attr & Reverse ? cell->bg : cell->fg); - if (bg < 0) bg = defaultBg; - if (fg < 0) fg = defaultFg; + if (bg < 0) bg = (attr & Reverse ? defaultFg : defaultBg); + if (fg < 0) fg = (attr & Reverse ? defaultBg : defaultFg); if (bright && cell->attr & Bold) { if (fg < 8) fg += 8; attr &= ~Bold; -- cgit 1.4.1