aboutsummarylogtreecommitdiffstats
path: root/dwm.c
diff options
context:
space:
mode:
authorAnselm R Garbe2011-03-25 13:57:54 +0000
committerAnselm R Garbe2011-03-25 13:57:54 +0000
commitce1b00d0b10dddd9d25cf5eebfc307ef66a701c3 (patch)
tree9c9c7ac40640213602f7ae5a3beadc47c2ac0fd1 /dwm.c
parent03fae0e0473a0cff08cfc2ec05981e4234b9da7d (diff)
downloadaur-ce1b00d0b10dddd9d25cf5eebfc307ef66a701c3.tar.gz
applied Hiltjos' BUGS patch from 23 Mar, sorry took a while :)
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwm.c b/dwm.c
index 4a8ee32f0185..7b5fa4e318e9 100644
--- a/dwm.c
+++ b/dwm.c
@@ -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;