Got questions, comments, patches, etc.?
Contact Jason Woofenden
gitweb
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2bb51b3
)
spotted missing spaces
author
a@null
<unknown>
Sat, 20 Dec 2008 12:02:14 +0000
(12:02 +0000)
committer
a@null
<unknown>
Sat, 20 Dec 2008 12:02:14 +0000
(12:02 +0000)
dwm.c
patch
|
blob
|
history
diff --git
a/dwm.c
b/dwm.c
index
77a91ac
..
c9a6b0a
100644
(file)
--- a/
dwm.c
+++ b/
dwm.c
@@
-1147,8
+1147,8
@@
resizemouse(const Arg *arg) {
handler[ev.type](&ev);
break;
case MotionNotify:
- nw = MAX(ev.xmotion.x - ocx - 2*c->bw + 1, 1);
- nh = MAX(ev.xmotion.y - ocy - 2*c->bw + 1, 1);
+ nw = MAX(ev.xmotion.x - ocx - 2 * c->bw + 1, 1);
+ nh = MAX(ev.xmotion.y - ocy - 2 * c->bw + 1, 1);
if(snap && nw >= wx && nw <= wx + ww
&& nh >= wy && nh <= wy + wh) {