]> git.sur5r.net Git - i3/i3/commitdiff
i3bar: Fix pixel offset calculation in dual-head
authorThomas Adam <thomas@xteddy.org>
Sun, 12 May 2013 16:49:23 +0000 (17:49 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 20 May 2013 13:09:15 +0000 (15:09 +0200)
When running i3bar on a dual-head display with workspaces enabled in i3bar's
config, the second monitor wouldn't use a correct x position offset and
would draw its label too close to the screen's edge.  In comparison to the
first monitor, this is inconsistent because that starts with a pixel offset
of 1.

i3bar/src/xcb.c

index b09f63d210de56bc70b9eba0b1b642cbb1126730..981b0f5eeffa4a6d99e4ea18fb9308efbe37bf8e 100644 (file)
@@ -1715,7 +1715,7 @@ void draw_bars(bool unhide) {
             unhide = true;
         }
 
-        i = 0;
+        i = 1;
     }
 
     if (!mod_pressed) {