prepared yet another hotfix release

This commit is contained in:
Anselm R. Garbe 2007-01-25 09:59:48 +01:00
parent ea4827a578
commit 2c1db7ed35
3 changed files with 9 additions and 5 deletions

View File

@ -178,6 +178,8 @@ void
resize(Client *c, Bool sizehints) { resize(Client *c, Bool sizehints) {
XWindowChanges wc; XWindowChanges wc;
if(c->w <= 0 || c->h <= 0)
return;
if(sizehints) { if(sizehints) {
if(c->incw) if(c->incw)
c->w -= (c->w - c->basew) % c->incw; c->w -= (c->w - c->basew) % c->incw;

View File

@ -1,5 +1,5 @@
# dwm version # dwm version
VERSION = 3.2.1 VERSION = 3.2.2
# Customize below to fit your system # Customize below to fit your system

10
view.c
View File

@ -98,11 +98,11 @@ dotile(void) {
else { /* tile window */ else { /* tile window */
c->x += mw; c->x += mw;
c->w = tw - 2 * BORDERPX; c->w = tw - 2 * BORDERPX;
if(th > bh) { if(th - 2 * BORDERPX > bh) {
c->y += (i - nmaster) * th; c->y += (i - nmaster) * th;
c->h = th - 2 * BORDERPX; c->h = th - 2 * BORDERPX;
} }
else /* fallback if th < bh */ else /* fallback if th - 2 * BORDERPX < bh */
c->h = wah - 2 * BORDERPX; c->h = wah - 2 * BORDERPX;
} }
resize(c, False); resize(c, False);
@ -149,7 +149,8 @@ focusprev(Arg *arg) {
void void
incnmaster(Arg *arg) { incnmaster(Arg *arg) {
if((arrange == dofloat) || (nmaster + arg->i < 1) || (wah / (nmaster + arg->i) < bh)) if((arrange == dofloat) || (nmaster + arg->i < 1)
|| (wah / (nmaster + arg->i) - 2 * BORDERPX < bh))
return; return;
nmaster += arg->i; nmaster += arg->i;
if(sel) if(sel)
@ -173,7 +174,8 @@ resizemaster(Arg *arg) {
if(arg->i == 0) if(arg->i == 0)
master = MASTER; master = MASTER;
else { else {
if(master + arg->i > 950 || master + arg->i < 50) if(waw * (master + arg->i) / 1000 > waw - bh - 2 * BORDERPX
|| waw * (master + arg->i) / 1000 < bh + 2 * BORDERPX)
return; return;
master += arg->i; master += arg->i;
} }