Don't treat config dialogs as special anymore. They also can work w/ dual
authorChristopher Michael <cpmichael1@comcast.net>
Fri, 11 Dec 2009 02:56:07 +0000 (02:56 +0000)
committerChristopher Michael <cpmichael1@comcast.net>
Fri, 11 Dec 2009 02:56:07 +0000 (02:56 +0000)
app mode.

SVN revision: 44346

src/modules/illume2/e_mod_layout.c
src/modules/illume2/e_mod_layout_illume.c

index 4789c88..ef73cb0 100644 (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;
index 3be274a..e5efe22 100644 (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)