Introduction
Introduction Statistics Contact Development Disclaimer Help
tapplied Sander's drop_bh patch - dwm - [fork] customized build of dwm, the dyn…
git clone git://src.adamsgaard.dk/dwm
Log
Files
Refs
README
LICENSE
---
commit 042297b27b64aa1ff3a7da12f5b07268ba2f11eb
parent a5cb80b86cdedb8cd1f3a02de47f204bd174f649
Author: Anselm R. Garbe <[email protected]>
Date: Wed, 31 Jan 2007 20:08:55 +0100
applied Sander's drop_bh patch
Diffstat:
M view.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/view.c b/view.c
t@@ -98,11 +98,11 @@ dotile(void) {
else { /* tile window */
c->x += mw;
c->w = tw - 2 * BORDERPX;
- if(th - 2 * BORDERPX > bh) {
+ if(th > 2 * BORDERPX) {
c->y += (i - nmaster) * th;
c->h = th - 2 * BORDERPX;
}
- else /* fallback if th - 2 * BORDERPX < bh */
+ else /* fallback if th <= 2 * BORDERPX */
c->h = wah - 2 * BORDERPX;
}
resize(c, False);
t@@ -150,7 +150,7 @@ focusprev(Arg *arg) {
void
incnmaster(Arg *arg) {
if((arrange == dofloat) || (nmaster + arg->i < 1)
- || (wah / (nmaster + arg->i) - 2 * BORDERPX < bh))
+ || (wah / (nmaster + arg->i) <= 2 * BORDERPX))
return;
nmaster += arg->i;
if(sel)
t@@ -174,8 +174,8 @@ resizemaster(Arg *arg) {
if(arg->i == 0)
master = MASTER;
else {
- if(waw * (master + arg->i) / 1000 > waw - bh - 2 * BORDERPX
- || waw * (master + arg->i) / 1000 < bh + 2 * BORDERPX)
+ if(waw * (master + arg->i) / 1000 >= waw - 2 * BORDERPX
+ || waw * (master + arg->i) / 1000 <= 2 * BORDERPX)
return;
master += arg->i;
}
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.