Wait for add events on new windows

SVN revision: 12980
This commit is contained in:
handyande 2005-01-15 14:15:30 +00:00 committed by handyande
parent c34cfdf821
commit 8ee0689e96
1 changed files with 6 additions and 1 deletions

View File

@ -421,13 +421,18 @@ _pager_zone_set(Pager *e, E_Zone *zone)
sym = _pager_desk_create(e, desk);
e->desks = evas_list_append(e->desks, sym);
wins = desk->clients;
wins = desk->clients;
while (wins)
{
Pager_Win *win;
E_Border *bd;
bd = wins->data;
if (bd->new_client)
{
wins = wins->next;
continue;
}
win = _pager_window_create(e, bd, sym);
sym->wins = evas_list_append(sym->wins, win);