elm - config - support coarse palette entires with colon

This commit is contained in:
Carsten Haitzler 2021-08-09 18:47:13 +01:00
parent 276513f58b
commit 4596fdd375
1 changed files with 1 additions and 1 deletions

View File

@ -834,7 +834,7 @@ _palette_apply(const char *name)
l = edje_color_class_list();
EINA_LIST_FREE(l, s)
{
if ((s) && (s[0] == '/')) edje_color_class_del(s);
if ((s) && ((s[0] == '/') || s[0] == ':')) edje_color_class_del(s);
free(s);
}
pal = _palette_find(name);