diff options
author | Martynas Venckus <martynas@cvs.openbsd.org> | 2009-02-03 22:20:32 +0000 |
---|---|---|
committer | Martynas Venckus <martynas@cvs.openbsd.org> | 2009-02-03 22:20:32 +0000 |
commit | 2e6cbe84df2c23eae8ef98797d7dec8ef19a41ff (patch) | |
tree | 7d6c9187aa16de3d0e1ae1f33d1cb02a590c4bb3 | |
parent | 3d3826541ad7aac067518a810416561827d5e294 (diff) |
fix off-by-one in geom.[xy], after pwin changes. keyboard movement
to the rightmost or bottommost corners would confuse cwm:
- there's no way to get the window back
- tab cycling breaks
ok okan@, oga@
-rw-r--r-- | app/cwm/kbfunc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/cwm/kbfunc.c b/app/cwm/kbfunc.c index a98725ed4..1be5a80ef 100644 --- a/app/cwm/kbfunc.c +++ b/app/cwm/kbfunc.c @@ -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. * - * $Id: kbfunc.c,v 1.34 2009/01/23 18:58:40 oga Exp $ + * $Id: kbfunc.c,v 1.35 2009/02/03 22:20:31 martynas Exp $ */ #include <paths.h> @@ -80,14 +80,14 @@ kbfunc_moveresize(struct client_ctx *cc, union arg *arg) cc->geom.y += my; if (cc->geom.y + cc->geom.height < 0) cc->geom.y = -cc->geom.height; - if (cc->geom.y > cc->sc->ymax) - cc->geom.y = cc->sc->ymax; + if (cc->geom.y > cc->sc->ymax - 1) + cc->geom.y = cc->sc->ymax - 1; cc->geom.x += mx; if (cc->geom.x + cc->geom.width < 0) cc->geom.x = -cc->geom.width; - if (cc->geom.x > cc->sc->xmax) - cc->geom.x = cc->sc->xmax; + if (cc->geom.x > cc->sc->xmax - 1) + cc->geom.x = cc->sc->xmax - 1; client_move(cc); xu_ptr_getpos(cc->win, &x, &y); |