From: Dana Jansens Date: Sat, 21 Jul 2007 19:48:12 +0000 (-0400) Subject: fix copy/paste error X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fopenbox;a=commitdiff_plain;h=41f90931ff584badb743bf704e0226453a4a21d5 fix copy/paste error --- diff --git a/openbox/actions/moveresizeto.c b/openbox/actions/moveresizeto.c index 046a7b80..75184ea3 100644 --- a/openbox/actions/moveresizeto.c +++ b/openbox/actions/moveresizeto.c @@ -65,9 +65,9 @@ static gpointer setup_func(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node) parse_coord(doc, n, &o->y, &o->yopposite, &o->ycenter); if ((n = parse_find_node("width", node))) - o->w = parse_int(doc, n) - 1; + o->w = parse_int(doc, n); if ((n = parse_find_node("height", node))) - o->h = parse_int(doc, n) - 1; + o->h = parse_int(doc, n); if ((n = parse_find_node("monitor", node))) o->monitor = parse_int(doc, n) - 1;