X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=spectrwm.c;h=5bf74b13a01dd279d7e1c88e74102ed81f796134;hb=cc09aae7348b01d59555a18f666a9e3231cf0984;hp=1e205629f17ef33e09bc5ebed37c7e7abacfa722;hpb=cfe055c6fc663ae4f4ab2520ba076c2409552dac;p=spectrwm.git 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; }