all repos — openbox @ c4138c0cdedf2085d4e26804d19868512502d904

openbox fork - make it a bit more like ryudo

initialize start_x/y
Dana Jansens danakj@orodu.net
commit

c4138c0cdedf2085d4e26804d19868512502d904

parent

25ffe6b566379f25dd3cf7e74aeefd084b7e1b19

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

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

@@ -70,6 +70,8 @@ start_cx = c->frame->area.x;

start_cy = c->frame->area.y; start_cw = c->area.width; start_ch = c->area.height; + start_x = x; + start_y = y; if (corner == prop_atoms.net_wm_moveresize_move_keyboard || corner == prop_atoms.net_wm_moveresize_size_keyboard) button = 0; /* mouse can't end it without being pressed first */

@@ -188,7 +190,6 @@ } else if (e->type == MotionNotify) {

if (moving) { cur_x = start_cx + e->xmotion.x_root - start_x; cur_y = start_cy + e->xmotion.y_root - start_y; - do_move(); } else { if (corner == prop_atoms.net_wm_moveresize_size_topleft) {