diff options
author | okan <okan> | 2013-11-27 18:34:34 +0000 |
---|---|---|
committer | okan <okan> | 2013-11-27 18:34:34 +0000 |
commit | 5e67a12262c061ecabc03e1cd73fdbb5c3c00196 (patch) | |
tree | 96f926df67fe7d301b7c149ab98fcbc544250034 /mousefunc.c | |
parent | 1b6ef8e9edfca41c4339c83b481d47d839100984 (diff) | |
download | cwm-5e67a12262c061ecabc03e1cd73fdbb5c3c00196.tar.gz cwm-5e67a12262c061ecabc03e1cd73fdbb5c3c00196.tar.xz cwm-5e67a12262c061ecabc03e1cd73fdbb5c3c00196.zip |
like gap, make snapdist per screen
Diffstat (limited to 'mousefunc.c')
-rw-r--r-- | mousefunc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mousefunc.c b/mousefunc.c index 34e39ff..fbcc764 100644 --- a/mousefunc.c +++ b/mousefunc.c @@ -147,10 +147,10 @@ mousefunc_client_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->work.x, sc->work.w, Conf.snapdist); + sc->work.x, sc->work.w, sc->snapdist); cc->geom.y += client_snapcalc(cc->geom.y, cc->geom.y + cc->geom.h + (cc->bwidth * 2), - sc->work.y, sc->work.h, Conf.snapdist); + sc->work.y, sc->work.h, sc->snapdist); /* don't move more than 60 times / second */ if ((ev.xmotion.time - ltime) > (1000 / 60)) { |