From: Dana Jansens Date: Tue, 2 Sep 2003 05:34:04 +0000 (+0000) Subject: grow to edge is a move and a resize, oops X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=fa55dc4bb1a349cfb3a55f7d0f85b03d6fa0e09f;p=chaz%2Fopenbox grow to edge is a move and a resize, oops --- diff --git a/openbox/action.c b/openbox/action.c index 3b120174..2d3bf6c3 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -1203,7 +1203,7 @@ void action_growtoedge(union ActionData *data) frame_frame_gravity(c->frame, &x, &y); width -= c->frame->size.left + c->frame->size.right; height -= c->frame->size.top + c->frame->size.bottom; - client_move(c, x, y); + client_move_resize(c, x, y, width, height); } void action_send_to_layer(union ActionData *data)