From e0996f9fa7308702453726d06467f01033d7e1e7 Mon Sep 17 00:00:00 2001 From: Till Adam Date: Tue, 5 Mar 2002 16:50:19 +0000 Subject: [PATCH] I assume Brian meant to do that. SVN revision: 6039 --- src/view.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/view.c b/src/view.c index e697b73d1..e8469d95c 100644 --- a/src/view.c +++ b/src/view.c @@ -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);