all repos — dwm @ 8fcc4ff0ae2b20f9605370cee02ebcda50f8777c

my dwm build

fix of resize (thanks Sander for the hint!)
Anselm R. Garbe garbeam@gmail.com
Tue, 14 Aug 2007 19:38:10 +0200
commit

8fcc4ff0ae2b20f9605370cee02ebcda50f8777c

parent

f2512243f494915fe91ebb5e67ac94abd5b528c6

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M client.cclient.c

@@ -272,9 +272,9 @@ if(c->incw)

w -= (w - c->basew) % c->incw; if(c->inch) h -= (h - c->baseh) % c->inch; - if(w <= 0 || h <= 0) - return; } + if(w <= 0 || h <= 0) + return; /* offscreen appearance fixes */ if(x > sw) x = sw - w - 2 * c->border;