all repos — openbox @ f8056d9c28434511073f8bea56d37b87e2fd3fc9

openbox fork - make it a bit more like ryudo

unset it AFTER using it...
Dana Jansens danakj@orodu.net
commit

f8056d9c28434511073f8bea56d37b87e2fd3fc9

parent

bf14853e55c97d35be0a311b04617d15c8f9b2c0

1 files changed, 3 insertions(+), 3 deletions(-)

jump to
M openbox/moveresize.copenbox/moveresize.c

@@ -130,9 +130,6 @@

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 @@ moveresize_client->area.y,

(cancel ? start_cw : cur_x), (cancel ? start_ch : cur_y), TRUE, TRUE); } + + moveresize_in_progress = FALSE; + moveresize_client = NULL; } static void do_move()