e.client should have been e.swallow.client

if you've updated a theme already, make sure you change this (the map file has hadd the new name all along...)


SVN revision: 25166
This commit is contained in:
rephorm 2006-08-28 02:31:32 +00:00 committed by rephorm
parent 47004dc9e5
commit e822d72a22
3 changed files with 10 additions and 10 deletions

View File

@ -1124,7 +1124,7 @@ group {
}
}
part {
name: "e.client";
name: "e.swallow.client";
type: SWALLOW;
description {
state: "default" 0.0;
@ -2177,7 +2177,7 @@ group {
}
}
part {
name: "e.client";
name: "e.swallow.client";
type: SWALLOW;
description {
state: "default" 0.0;
@ -3447,7 +3447,7 @@ group {
}
}
part {
name: "e.client";
name: "e.swallow.client";
type: SWALLOW;
description {
state: "default" 0.0;
@ -4514,7 +4514,7 @@ group {
}
}
part {
name: "e.client";
name: "e.swallow.client";
type: SWALLOW;
description {
state: "default" 0.0;
@ -4873,7 +4873,7 @@ group {
}
}
part {
name: "e.client";
name: "e.swallow.client";
type: SWALLOW;
description {
state: "default" 0.0;

View File

@ -120,7 +120,7 @@ group {
size: 10;
min: 1 1;
align: 0.5 0.5;
text_class: "e.dragable.slider";
text_class: "slider";
}
}
}

View File

@ -1706,7 +1706,7 @@ e_border_maximize(E_Border *bd, E_Maximize max)
evas_object_resize(bd->bg_object, 1000, 1000);
edje_object_calc_force(bd->bg_object);
edje_object_part_geometry_get(bd->bg_object, "e.client", &cx, &cy, &cw, &ch);
edje_object_part_geometry_get(bd->bg_object, "e.swallow.client", &cx, &cy, &cw, &ch);
bd->client_inset.l = cx;
bd->client_inset.r = 1000 - (cx + cw);
bd->client_inset.t = cy;
@ -1841,7 +1841,7 @@ e_border_unmaximize(E_Border *bd, E_Maximize max)
evas_object_resize(bd->bg_object, 1000, 1000);
edje_object_calc_force(bd->bg_object);
edje_object_part_geometry_get(bd->bg_object, "e.client", &cx, &cy, &cw, &ch);
edje_object_part_geometry_get(bd->bg_object, "e.swallow.client", &cx, &cy, &cw, &ch);
bd->client_inset.l = cx;
bd->client_inset.r = 1000 - (cx + cw);
bd->client_inset.t = cy;
@ -2725,7 +2725,7 @@ e_border_frame_recalc(E_Border *bd)
evas_object_resize(bd->bg_object, 1000, 1000);
edje_object_calc_force(bd->bg_object);
edje_object_part_geometry_get(bd->bg_object, "e.client", &cx, &cy, &cw, &ch);
edje_object_part_geometry_get(bd->bg_object, "e.swallow.client", &cx, &cy, &cw, &ch);
bd->client_inset.l = cx;
bd->client_inset.r = 1000 - (cx + cw);
bd->client_inset.t = cy;
@ -5441,7 +5441,7 @@ _e_border_eval(E_Border *bd)
bd->client.icccm.title);
evas_object_resize(o, 1000, 1000);
edje_object_calc_force(o);
edje_object_part_geometry_get(o, "e.client", &cx, &cy, &cw, &ch);
edje_object_part_geometry_get(o, "e.swallow.client", &cx, &cy, &cw, &ch);
l = cx;
r = 1000 - (cx + cw);
t = cy;