diff options
author | Anselm R Garbe <anselm@garbe.us> | 2011-03-25 13:57:54 +0000 |
---|---|---|
committer | Anselm R Garbe <anselm@garbe.us> | 2011-03-25 13:57:54 +0000 |
commit | 3c48858ffada0825b62e52ac14b1feba4b7654a4 (patch) | |
tree | d688bdb8138214a05e41dcafd8f5e4d38edfe87d /dwm.c | |
parent | dd46d5b588dc5d33940bde87817f3e8d608788d4 (diff) | |
download | dwm-3c48858ffada0825b62e52ac14b1feba4b7654a4.tar dwm-3c48858ffada0825b62e52ac14b1feba4b7654a4.tar.gz dwm-3c48858ffada0825b62e52ac14b1feba4b7654a4.tar.bz2 |
applied Hiltjos' BUGS patch from 23 Mar, sorry took a while :)
Diffstat (limited to 'dwm.c')
-rw-r--r-- | dwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1202,7 +1202,7 @@ movemouse(const Arg *arg) { case MotionNotify: nx = ocx + (ev.xmotion.x - x); ny = ocy + (ev.xmotion.y - y); - if(snap && nx >= selmon->wx && nx <= selmon->wx + selmon->ww + if(nx >= selmon->wx && nx <= selmon->wx + selmon->ww && ny >= selmon->wy && ny <= selmon->wy + selmon->wh) { if(abs(selmon->wx - nx) < snap) nx = selmon->wx; |