From 279ed3a9c1fc9c83abc6c24ee2aa88c24628cf74 Mon Sep 17 00:00:00 2001 From: peter1138 Date: Sun, 29 Jul 2007 16:43:58 +0000 Subject: (svn r10724) -Fix (r10723): Toolbar spacing was off-by-one --- src/main_gui.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/main_gui.cpp') diff --git a/src/main_gui.cpp b/src/main_gui.cpp index 4af8e5d5c..fba6ecb1d 100644 --- a/src/main_gui.cpp +++ b/src/main_gui.cpp @@ -1710,16 +1710,16 @@ static void MainToolbarWndProc(Window *w, WindowEvent *e) uint extra_spacing_at[] = { 4, 8, 13, 17, 19, 24, 0 }; for (uint i = 0, x = 0, j = 0; i < 27; i++) { - w->widget[i].left = x; - x += (spacing != 0) ? button_width : (w->width - x) / (27 - i); - w->widget[i].right = x - 1; - if (extra_spacing_at[j] == i) { j++; uint add = spacing / (lengthof(extra_spacing_at) - j); spacing -= add; x += add; } + + w->widget[i].left = x; + x += (spacing != 0) ? button_width : (w->width - x) / (27 - i); + w->widget[i].right = x - 1; } } break; -- cgit v1.2.3-54-g00ecf