]> git.sur5r.net Git - i3/i3/commitdiff
i3bar: draw workspace buttons at x=0 instead of x=1
authorMichael Stapelberg <michael@stapelberg.de>
Mon, 29 Jul 2013 19:49:38 +0000 (21:49 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 29 Jul 2013 19:50:59 +0000 (21:50 +0200)
This makes the workspace buttons align with the window borders, which is
particularly visible with color configurations like the one in this
screenshot: http://i.imgur.com/CH8srF5.png

fixes #687

i3bar/src/xcb.c

index 79d55e5cd339fe749f03ef3fd3efc159d9141bad..15c68a0876dde8358ffa73f0a7b4461848b068ce 100644 (file)
@@ -1608,7 +1608,7 @@ void reconfig_windows(bool redraw_bars) {
  */
 void draw_bars(bool unhide) {
     DLOG("Drawing Bars...\n");
-    int i = 1;
+    int i = 0;
 
     refresh_statusline();
 
@@ -1766,7 +1766,7 @@ void draw_bars(bool unhide) {
             unhide = true;
         }
 
-        i = 1;
+        i = 0;
     }
 
     /* Assure the bar is hidden/unhidden according to the specified hidden_state and mode */