update all zones

SVN revision: 17262
This commit is contained in:
Carsten Haitzler 2005-10-07 05:08:53 +00:00
parent 5ca66a576d
commit 9348222b9f
1 changed files with 6 additions and 3 deletions

View File

@ -176,7 +176,7 @@ e_bg_del(int container, int zone, int desk_x, int desk_y)
void
e_bg_update(void)
{
Evas_List *l, *ll;
Evas_List *l, *ll, *lll;
E_Manager *man;
E_Container *con;
E_Zone *zone;
@ -187,8 +187,11 @@ e_bg_update(void)
for (ll = man->containers; ll; ll = ll->next)
{
con = ll->data;
zone = e_zone_current_get(con);
e_zone_bg_reconfigure(zone);
for (lll = con->zones; lll; lll = lll->next)
{
zone = lll->data;
e_zone_bg_reconfigure(zone);
}
}
}
}