pinosaur
/
dwm.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1586b7a
)
fix big-border corner case
author
Connor Lane Smith
<cls@lubutu.com>
Sun, 30 Oct 2011 11:14:34 +0000
(12:14 +0100)
committer
Connor Lane Smith
<cls@lubutu.com>
Sun, 30 Oct 2011 11:14:34 +0000
(12:14 +0100)
dwm.c
patch
|
blob
|
history
diff --git
a/dwm.c
b/dwm.c
index
cce215a
..
8dbe83b
100644
(file)
--- a/
dwm.c
+++ b/
dwm.c
@@
-1606,7
+1606,7
@@
showhide(Client *c) {
}
else { /* hide clients bottom up */
showhide(c->snext);
- XMoveWindow(dpy, c->win,
c->w
* -2, c->y);
+ XMoveWindow(dpy, c->win,
WIDTH(c)
* -2, c->y);
}
}