elementary/elm_colorselector : The arrow for the forth colorbar was

not colored well. So fixed it :)


SVN revision: 64053
This commit is contained in:
WooHyun Jung 2011-10-14 00:27:29 +00:00
parent 2fd30a5890
commit 951edc519b
1 changed files with 5 additions and 1 deletions

View File

@ -419,7 +419,11 @@ _draw_rects(void *data, double x)
break;
case ALPHA:
wd->a = 255.0 * x;
evas_object_color_set(wd->cp[3]->arrow, wd->er, wd->eg, wd->eb, wd->a);
evas_object_color_set(wd->cp[3]->arrow,
(wd->er * wd->a) / 255,
(wd->eg * wd->a) / 255,
(wd->eb * wd->a) / 255,
wd->a);
break;
default:
break;