remove impossible null check in color dialog

CID 1294267
This commit is contained in:
Mike Blumenkrantz 2016-02-29 10:37:45 -05:00
parent fac201c528
commit fb51f4d98d
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ _e_color_dialog_cb_csel_change(void *data, Evas_Object *obj, void *ev EINA_UNUSE
re = evas_object_data_get(obj, "rect");
evas_color_argb_premul(dia->color->a, &r, &g, &b);
evas_object_color_set(re, r, g, b, dia->color->a);
if (dia->change_func && dia->color)
if (dia->change_func)
dia->change_func(dia, dia->color, dia->change_data);
}