X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=openbox%2Fmoveresize.c;h=59c1b1b81118e1f878b5c72dbb8fce81af27d2e9;hb=1d685c0dfdc12ef3910bcd91edfeee13239e2344;hp=29f82cf062f05da19d92e146aaff26420cf61b89;hpb=9eed441c42d21049cc0621ec1fd920423875ff44;p=chaz%2Fopenbox diff --git a/openbox/moveresize.c b/openbox/moveresize.c index 29f82cf0..59c1b1b8 100644 --- a/openbox/moveresize.c +++ b/openbox/moveresize.c @@ -195,7 +195,7 @@ void moveresize_start(ObClient *c, gint x, gint y, guint b, guint32 cnr) moveresize_in_progress = TRUE; #ifdef SYNC - if (config_resize_redraw && !moving && extensions_shape && + if (config_resize_redraw && !moving && extensions_sync && moveresize_client->sync_request && moveresize_client->sync_counter) { /* Initialize values for the resize syncing, and create an alarm for @@ -341,7 +341,7 @@ static void do_resize() waiting_for_sync = TRUE; ob_main_loop_timeout_remove(ob_main_loop, sync_timeout_func); - ob_main_loop_timeout_add(ob_main_loop, G_USEC_PER_SEC, + ob_main_loop_timeout_add(ob_main_loop, G_USEC_PER_SEC * 2, sync_timeout_func, NULL, NULL, NULL); } @@ -716,7 +716,7 @@ gboolean moveresize_event(XEvent *e) lockcorner = OB_CORNER_BOTTOMRIGHT; } else if (corner == prop_atoms.net_wm_moveresize_size_top) { dw = 0; - dh = (e->xmotion.y_root - start_y); + dh = -(e->xmotion.y_root - start_y); lockcorner = OB_CORNER_BOTTOMRIGHT; } else if (corner == prop_atoms.net_wm_moveresize_size_topright) { dw = (e->xmotion.x_root - start_x); @@ -753,7 +753,6 @@ gboolean moveresize_event(XEvent *e) dw -= cur_w - start_cw; dh -= cur_h - start_ch; - ob_debug("dw %d\n", dw); calc_resize(FALSE, 0, &dw, &dh, lockcorner); cur_w += dw;