about summary refs log tree commit diff
path: root/mousefunc.c
diff options
context:
space:
mode:
authorokan <okan>2013-01-02 21:41:14 +0000
committerokan <okan>2013-01-02 21:41:14 +0000
commitc139df129c45eab966836e622c71deec821ba370 (patch)
tree9162dc1f1de52db9d4ce3024dcbe131e0b21e6b7 /mousefunc.c
parent2ac65bd2882c26dc4dddac26d1883dd140704fef (diff)
downloadcwm-c139df129c45eab966836e622c71deec821ba370.tar.gz
cwm-c139df129c45eab966836e622c71deec821ba370.tar.xz
cwm-c139df129c45eab966836e622c71deec821ba370.zip
pass the screen workarea, as opposed to viewarea, allowing client
snapping to honor gap.
Diffstat (limited to 'mousefunc.c')
-rw-r--r--mousefunc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mousefunc.c b/mousefunc.c
index 1b207ce..1d2b287 100644
--- a/mousefunc.c
+++ b/mousefunc.c
@@ -163,10 +163,10 @@ mousefunc_window_move(struct client_ctx *cc, void *arg)
 
 			cc->geom.x += client_snapcalc(cc->geom.x,
 			    cc->geom.x + cc->geom.w + (cc->bwidth * 2),
-			    sc->view.x, sc->view.w, Conf.snapdist);
+			    sc->work.x, sc->work.w, Conf.snapdist);
 			cc->geom.y += client_snapcalc(cc->geom.y,
 			    cc->geom.y + cc->geom.h + (cc->bwidth * 2),
-			    sc->view.y, sc->view.h, Conf.snapdist);
+			    sc->work.y, sc->work.h, Conf.snapdist);
 
 			/* don't move more than 60 times / second */
 			if ((ev.xmotion.time - ltime) > (1000 / 60)) {