From 709a55889f03d6da9de7e9310b6148c8996ee0f1 Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Mon, 30 Mar 2015 20:47:35 +0200 Subject: [PATCH] Revert "fix colors and show darkgray. Closes T2245" This reverts commit 834ee015327d0730de4272210bb5f655912141a6. --- src/bin/col.c | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/src/bin/col.c b/src/bin/col.c index 65fc6ca5..003847cd 100644 --- a/src/bin/col.c +++ b/src/bin/col.c @@ -389,7 +389,7 @@ colors_term_init(Evas_Object *textgrid, Evas_Object *bg, Config *config) for (c = 0; c < (4 * 12); c++) { - n = c; + n = c + (24 * (c / 24)); if (config->colors_use) { r = config->colors[c].r; @@ -421,19 +421,9 @@ colors_term_init(Evas_Object *textgrid, Evas_Object *bg, Config *config) r, g, b, a); /* faint */ - if ((n == 1) && (r == 0) && (g == 0) && (b == 0)) - { - /* dark gray */ - evas_object_textgrid_palette_set( - textgrid, EVAS_TEXTGRID_PALETTE_STANDARD, n + 48, - 127, 127, 127, 127); - } - else - { - evas_object_textgrid_palette_set( - textgrid, EVAS_TEXTGRID_PALETTE_STANDARD, n + 48, - r / 2, g / 2, b / 2, a / 2); - } + evas_object_textgrid_palette_set( + textgrid, EVAS_TEXTGRID_PALETTE_STANDARD, n + 24, + r / 2, g / 2, b / 2, a / 2); } for (c = 0; c < 256; c++) {