I assume Brian meant to do that.

SVN revision: 6039
This commit is contained in:
Till Adam 2002-03-05 16:50:19 +00:00
parent 949b22865e
commit e0996f9fa7
1 changed files with 6 additions and 4 deletions

View File

@ -1810,10 +1810,12 @@ e_view_realize(E_View * v)
if (e_view_layout_get_element_geometry(v->layout, "Icons",
&x, &y, &w, &h))
v->spacing.window.l = x;
v->spacing.window.r = v->size.w - (x + w);
v->spacing.window.t = y;
v->spacing.window.b = v->size.h - (y + h);
{
v->spacing.window.l = x;
v->spacing.window.r = v->size.w - (x + w);
v->spacing.window.t = y;
v->spacing.window.b = v->size.h - (y + h);
}
}
v->scrollbar.v = e_scrollbar_new(v);