use the current size not the start size for moving
This commit is contained in:
parent
7b7bf43fc9
commit
3541c60fcb
1 changed files with 2 additions and 1 deletions
|
@ -171,7 +171,8 @@ static void do_move(gboolean resist)
|
||||||
/* get where the client should be */
|
/* get where the client should be */
|
||||||
frame_frame_gravity(moveresize_client->frame, &cur_x, &cur_y);
|
frame_frame_gravity(moveresize_client->frame, &cur_x, &cur_y);
|
||||||
client_configure(moveresize_client, OB_CORNER_TOPLEFT, cur_x, cur_y,
|
client_configure(moveresize_client, OB_CORNER_TOPLEFT, cur_x, cur_y,
|
||||||
start_cw, start_ch, TRUE, FALSE);
|
moveresize_client->area.width,
|
||||||
|
moveresize_client->area.height, TRUE, FALSE);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void do_resize(gboolean resist)
|
static void do_resize(gboolean resist)
|
||||||
|
|
Loading…
Reference in a new issue