billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=00f627d3540f540486fce875a3898307339942ed
commit 00f627d3540f540486fce875a3898307339942ed Author: Boris Faure <bill...@gmail.com> Date: Wed Jan 15 23:30:43 2014 +0100 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 fbb0b22..4757d6e 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; --