colorclass: flush config after saving

This commit is contained in:
Mike Blumenkrantz 2015-04-13 08:06:41 -04:00
parent 128babf6f0
commit c00d20a283
1 changed files with 4 additions and 1 deletions

View File

@ -234,7 +234,10 @@ _colorclass_save(Colorclass_UI *cc)
{
_colorclass_apply(cc);
if (cc->changed || (cc->exist && cc->change_reset))
elm_config_save();
{
elm_config_save();
elm_config_all_flush();
}
}
}