Revert "fix colors and show darkgray. Closes T2245"

This reverts commit 834ee01532.
This commit is contained in:
Boris Faure 2015-03-30 20:47:35 +02:00
parent 834ee01532
commit 709a55889f
1 changed files with 4 additions and 14 deletions

View File

@ -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++)
{