entrance: temporary fix this mess

This commit is contained in:
Michaël Bouchaud (yoz) 2014-05-13 18:00:26 +02:00
parent f3bfb371ce
commit de2f271f03
1 changed files with 19 additions and 12 deletions

View File

@ -459,21 +459,28 @@ void
entrance_gui_conf_set(const Entrance_Conf_Gui_Event *conf)
{
Entrance_Image *img;
EINA_LIST_FREE(_gui->background_pool, img)
{
eina_stringshare_del(img->path);
eina_stringshare_del(img->group);
free(img);
}
_gui->background_pool = conf->background_pool;
EINA_LIST_FREE(_gui->icon_pool, img)
if (conf->background_pool)
{
eina_stringshare_del(img->path);
eina_stringshare_del(img->group);
free(img);
EINA_LIST_FREE(_gui->background_pool, img)
{
eina_stringshare_del(img->path);
eina_stringshare_del(img->group);
free(img);
}
_gui->background_pool = conf->background_pool;
}
if (conf->icon_pool)
{
EINA_LIST_FREE(_gui->icon_pool, img)
{
eina_stringshare_del(img->path);
eina_stringshare_del(img->group);
free(img);
}
_gui->icon_pool = conf->icon_pool;
}
_gui->icon_pool = conf->icon_pool;
if (_gui->bg.path != conf->bg.path)
{