queue a config save when deleting color classes

SVN revision: 19883
This commit is contained in:
rephorm 2006-01-18 00:44:47 +00:00 committed by rephorm
parent e2709e5e7d
commit f34730eb66
1 changed files with 3 additions and 0 deletions

View File

@ -64,6 +64,7 @@ e_color_class_set(const char *color_class, int r, int g, int b, int a, int r2, i
cc->r, cc->g, cc->b, cc->a,
cc->r2, cc->g2, cc->b2, cc->a2,
cc->r3, cc->g3, cc->b3, cc->a3);
e_config_save_queue();
}
EAPI void
@ -78,6 +79,8 @@ e_color_class_del(const char *name)
edje_color_class_del(cc->name);
evas_stringshare_del(cc->name);
E_FREE(cc);
e_config_save_queue();
}
}