From: Reginald Kennedy Date: Sat, 27 Apr 2013 21:30:59 +0000 (+0800) Subject: Fix positioning issue on flipped layouts with a multi-column/row stack. X-Git-Url: https://jasonwoof.com/gitweb/?p=spectrwm.git;a=commitdiff_plain;h=cc09aae7348b01d59555a18f666a9e3231cf0984 Fix positioning issue on flipped layouts with a multi-column/row stack. --- diff --git a/spectrwm.c b/spectrwm.c index 1e20562..5bf74b1 100644 --- a/spectrwm.c +++ b/spectrwm.c @@ -4259,20 +4259,24 @@ stack_master(struct workspace *ws, struct swm_geometry *g, int rot, int flip) colno = (winno - mwin) / stacks; if (s <= (winno - mwin) % stacks) colno++; - split = split + colno; - hrh = (r_g.h / colno); + split += colno; + hrh = r_g.h / colno; extra = r_g.h - (colno * hrh); - if (flip) - win_g.x = r_g.x; - else + + if (!flip) win_g.x += win_g.w + 2 * border_width + tile_gap; + win_g.w = (r_g.w - msize - (stacks * (2 * border_width + tile_gap))) / stacks; if (s == 1) win_g.w += (r_g.w - msize - (stacks * (2 * border_width + tile_gap))) % stacks; + + if (flip) + win_g.x -= win_g.w + 2 * border_width + + tile_gap; s--; j = 0; }