unset it AFTER using it...

This commit is contained in:
Dana Jansens 2003-04-18 06:29:28 +00:00
parent bf14853e55
commit f8056d9c28

View file

@ -130,9 +130,6 @@ void moveresize_end(gboolean cancel)
XDestroyWindow(ob_display, coords);
coords = None;
moveresize_in_progress = FALSE;
moveresize_client = NULL;
if (moving) {
client_configure(moveresize_client, Corner_TopLeft,
(cancel ? start_cx : cur_x),
@ -145,6 +142,9 @@ void moveresize_end(gboolean cancel)
(cancel ? start_cw : cur_x),
(cancel ? start_ch : cur_y), TRUE, TRUE);
}
moveresize_in_progress = FALSE;
moveresize_client = NULL;
}
static void do_move()