From 58bcae42d42eb597e558015f40bb2657a3968b66 Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Wed, 28 Aug 2013 23:49:38 +0200 Subject: [PATCH] fix stupid bug with faint colors. Closes T44 --- src/bin/col.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/col.c b/src/bin/col.c index cbe59b8d..ddc7d263 100644 --- a/src/bin/col.c +++ b/src/bin/col.c @@ -414,7 +414,7 @@ colors_term_init(Evas_Object *textgrid, Evas_Object *bg) /* faint */ evas_object_textgrid_palette_set( textgrid, EVAS_TEXTGRID_PALETTE_STANDARD, n + 24, - r/2, g/2, b/2, a/2); + color.r/2, color.g/2, color.b/2, color.a/2); } } for (c = 0; c < 256; c++)