From 41f90931ff584badb743bf704e0226453a4a21d5 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sat, 21 Jul 2007 15:48:12 -0400 Subject: [PATCH] fix copy/paste error --- openbox/actions/moveresizeto.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.44.0