Browse Source

fixed the tile() issue with xpdf

master
Anselm R Garbe 16 years ago
parent
commit
fc578c57e4
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      dwm.c

+ 2
- 2
dwm.c View File

@ -1442,13 +1442,13 @@ tile(void) {
/* master */
c = nexttiled(clients);
mw = mfact * ww;
resize(c, wx, wy, ((n == 1) ? ww : mw) - 2 * c->bw, wh - 2 * c->bw, resizehints);
resize(c, wx, wy, (n == 1 ? ww : mw) - 2 * c->bw, wh - 2 * c->bw, resizehints);
if(--n == 0)
return;
/* tile stack */
x = (wx + mw > c->x + c->w) ? c->x + c->w + 2 * c->bw : ww - mw;
x = (wx + mw > c->x + c->w) ? c->x + c->w + 2 * c->bw : wx + mw;
y = wy;
w = (wx + mw > c->x + c->w) ? wx + ww - x : ww - mw;
h = wh / n;


Loading…
Cancel
Save