From 00f627d3540f540486fce875a3898307339942ed Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Wed, 15 Jan 2014 23:30:43 +0100 Subject: [PATCH] do not set bg to INVISIBLE when using 256 colors --- src/bin/termio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/termio.c b/src/bin/termio.c index fbb0b22f..4757d6e1 100644 --- a/src/bin/termio.c +++ b/src/bin/termio.c @@ -1407,7 +1407,7 @@ _smart_apply(Evas_Object *obj) { if (cells[x].att.inverse ^ inv) bg = COL_INVERSE; - else + else if (!bgext) bg = COL_INVIS; } if (cells[x].att.fgintense) fg += 48;