# HG changeset patch # User Anselm R Garbe # Date 1212339082 -3600 # Node ID d4528eea6e0d66f02b3374543ac072b73247a276 # Parent 58dc2070a79a65fd039d9d5d4e7caca1d5f9d365 fixed the tile() issue with xpdf diff -r 58dc2070a79a -r d4528eea6e0d dwm.c --- a/dwm.c Sun Jun 01 17:41:15 2008 +0100 +++ b/dwm.c Sun Jun 01 17:51:22 2008 +0100 @@ -1442,13 +1442,13 @@ /* 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;