diff options
author | okan | 2013-01-02 21:37:21 +0000 |
---|---|---|
committer | okan | 2013-01-02 21:37:21 +0000 |
commit | 97779c379983abeabc495ed29518853dd455422a (patch) | |
tree | ad285d65acd301e330f4b5033b835b2453cd031c /kbfunc.c | |
parent | 984be3588e6b340e90ceafb1aabde6cd70543e4d (diff) | |
download | cwm-97779c379983abeabc495ed29518853dd455422a.tar.gz |
re-work client_snapcalc() so it takes client and edge dimensions with
snapdist; allows for simplier snap calculations.
required for an upcoming diff for honoring gap.
Diffstat (limited to 'kbfunc.c')
-rw-r--r-- | kbfunc.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: kbfunc.c,v 1.72 2013/01/01 14:19:56 okan Exp $ + * $OpenBSD: kbfunc.c,v 1.73 2013/01/02 21:37:21 okan Exp $ */ #include <sys/param.h> @@ -101,11 +101,11 @@ kbfunc_moveresize(struct client_ctx *cc, union arg *arg) cc->geom.x = sc->view.w - 1; cc->geom.x += client_snapcalc(cc->geom.x, - cc->geom.w, sc->view.w, - cc->bwidth, Conf.snapdist); + cc->geom.x + cc->geom.w + (cc->bwidth * 2), + sc->view.x, sc->view.w, Conf.snapdist); cc->geom.y += client_snapcalc(cc->geom.y, - cc->geom.h, sc->view.h, - cc->bwidth, Conf.snapdist); + cc->geom.y + cc->geom.h + (cc->bwidth * 2), + sc->view.y, sc->view.h, Conf.snapdist); client_move(cc); xu_ptr_getpos(cc->win, &x, &y); |