From 2c3dc9a4dc645acd2023365a046c71c616f19ae4 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Sat, 15 Sep 2007 15:48:31 +0200 Subject: [PATCH] bug fix: reset current_col to 0 (Xinerama problem) --- layouts/tile.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/layouts/tile.c b/layouts/tile.c index 8b884e4e..6644155a 100644 --- a/layouts/tile.c +++ b/layouts/tile.c @@ -149,6 +149,8 @@ _tile(Display *disp, awesome_config *awesomeconf, const Bool right) real_ncols = otherwin; else real_ncols = awesomeconf->ncols; + + current_col = 0; } c->ismax = False;