summary refs log tree commit diff
path: root/bin/shotty.l
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-10-20 17:12:52 -0400
committerJune McEnroe <june@causal.agency>2021-10-20 17:12:52 -0400
commit22f0f077da59d274f7184adbff8491f4a0cb5128 (patch)
treee9c9837b47710721af04038ab1a4f04f3e394b82 /bin/shotty.l
parentAdd entire 256-color palette to shotty -i (diff)
downloadsrc-22f0f077da59d274f7184adbff8491f4a0cb5128.tar.gz
src-22f0f077da59d274f7184adbff8491f4a0cb5128.zip
Fix showing cursor with default colors
Diffstat (limited to 'bin/shotty.l')
-rw-r--r--bin/shotty.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/shotty.l b/bin/shotty.l
index 8d080727..e9edb515 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;