tapplied Connors aesthitic buf fix in tile(), thanks - dwm - [fork] customized build of dwm, the dynamic window manager
(HTM) git clone git://src.adamsgaard.dk/dwm
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit d6670a800d33639cdf64de170650b64c1921a300
(DIR) parent 6288c446974020c396923c9a4f1bf29c6f6c9645
(HTM) Author: garbeam@gmail.com <unknown>
Date: Wed, 20 Jul 2011 18:45:40 +0000
applied Connors aesthitic buf fix in tile(), thanks
Diffstat:
M dwm.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
(DIR) diff --git a/dwm.c b/dwm.c
t@@ -1662,9 +1662,9 @@ tile(Monitor *m) {
if(--n == 0)
return;
/* tile stack */
- x = (m->wx + mw > c->x + c->w) ? c->x + c->w + 2 * c->bw : m->wx + mw;
+ x = (m->wx > c->x) ? c->x + mw + 2 * c->bw : m->wx + mw;
y = m->wy;
- w = (m->wx + mw > c->x + c->w) ? m->wx + m->ww - x : m->ww - mw;
+ w = (m->wx > c->x) ? m->wx + m->ww - x : m->ww - mw;
h = m->wh / n;
if(h < bh)
h = m->wh;