X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fmoveresize.c;h=9f1a9b04bbc787ff7e4de927d28a97f033a8946a;hb=49b14e7bf5eb6256b69e6da66fbf7a0bca383038;hp=81e7cb007d0d36d3a49447f99e41c2d96ded8672;hpb=f39cc88fc4899119c51c239e1768b727f1e0ae20;p=chaz%2Fopenbox diff --git a/openbox/moveresize.c b/openbox/moveresize.c index 81e7cb00..9f1a9b04 100644 --- a/openbox/moveresize.c +++ b/openbox/moveresize.c @@ -167,14 +167,14 @@ void moveresize_start(ObClient *c, gint x, gint y, guint b, guint32 cnr) moveresize_client = c; start_cx = c->area.x; start_cy = c->area.y; + start_cw = c->area.width; + start_ch = c->area.height; /* these adjustments for the size_inc make resizing a terminal more friendly. you essentially start the resize in the middle of the increment instead of at 0, so you have to move half an increment either way instead of a full increment one and 1 px the other. */ - start_cw = c->area.width + c->size_inc.width / 2; - start_ch = c->area.height + c->size_inc.height / 2; - start_x = x; - start_y = y; + start_x = x - c->size_inc.width / 2; + start_y = y - c->size_inc.height / 2; corner = cnr; button = b; key_resize_edge = -1; @@ -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);