Don't treat config dialogs as special anymore. They also can work w/ dual

app mode.



SVN revision: 44346
This commit is contained in:
Christopher Michael 2009-12-11 02:56:07 +00:00
parent ffb78f4b8f
commit 374b78a8dc
2 changed files with 0 additions and 8 deletions

View File

@ -341,7 +341,6 @@ illume_border_valid_borders_get(void)
if (illume_border_is_bottom_panel(bd)) continue;
if (illume_border_is_keyboard(bd)) continue;
if (illume_border_is_dialog(bd)) continue;
if (strstr(bd->client.icccm.class, "config")) continue;
ret = eina_list_append(ret, bd);
}
return ret;

View File

@ -119,13 +119,6 @@ _zone_layout(E_Zone *z)
if ((bd->x != z->x) || (bd->y != (z->y + ((z->h - mh) / 2))))
e_border_fx_offset(bd, z->x, (z->y + ((z->h - mh) / 2)));
}
else if (strstr(bd->client.icccm.class, "config"))
{
if ((bd->w != z->w) || (bd->h != (z->h - shelfsize - panelsize)))
e_border_resize(bd, z->w, (z->h - shelfsize - panelsize));
if ((bd->x != z->x) || (bd->y != (z->y + shelfsize)))
e_border_fx_offset(bd, z->x, (z->y + shelfsize));
}
else
{
if (!il_cfg->policy.mode.dual)