projects
/
suckless
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
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 cce215a9c63d723067d8391b893f593fc87c862a..8dbe83baead81e6224016e8b05c639a73c378024 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);
}
}