diff options
Diffstat (limited to '')
-rw-r--r-- | kbfunc.c | 14 |
1 files changed, 7 insertions, 7 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.58 2011/08/29 09:09:45 okan Exp $ + * $OpenBSD: kbfunc.c,v 1.59 2012/07/04 18:07:12 okan Exp $ */ #include <sys/param.h> @@ -91,20 +91,20 @@ 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 - 1) - cc->geom.y = cc->sc->ymax - 1; + if (cc->geom.y > sc->ymax - 1) + cc->geom.y = 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 - 1) - cc->geom.x = cc->sc->xmax - 1; + if (cc->geom.x > sc->xmax - 1) + cc->geom.x = sc->xmax - 1; cc->geom.x += client_snapcalc(cc->geom.x, - cc->geom.width, cc->sc->xmax, + cc->geom.width, sc->xmax, cc->bwidth, Conf.snapdist); cc->geom.y += client_snapcalc(cc->geom.y, - cc->geom.height, cc->sc->ymax, + cc->geom.height, sc->ymax, cc->bwidth, Conf.snapdist); client_move(cc); |