X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=scripts%2Fmotion.py;h=1c854eccb5d091043dac5aee5a23211acbb53c95;hb=8934a553dcfbb0ea6035d2de8ed86595d3703f5a;hp=eca63b02e875d2cf95c8d87f2fc67a7fb371f678;hpb=c0446bba1fd2ab8e90b342e9af13bdc6e59948cd;p=chaz%2Fopenbox diff --git a/scripts/motion.py b/scripts/motion.py index eca63b02..1c854ecc 100644 --- a/scripts/motion.py +++ b/scripts/motion.py @@ -143,6 +143,9 @@ def end_move(data): def _do_resize(): global _screen, _client, _cx, _cy, _cw, _ch, _px, _py, _dx, _dy + dx = _dx + dy = _dy + # pick a corner to anchor if not (resize_nearest or _context == ob.MouseContext.Grip): corner = ob.Client.TopLeft @@ -152,19 +155,19 @@ def _do_resize(): if y < _ch / 2: if x < _cw / 2: corner = ob.Client.BottomRight - _dx *= -1 + dx *= -1 else: corner = ob.Client.BottomLeft - _dy *= -1 + dy *= -1 else: if x < _cw / 2: corner = ob.Client.TopRight - _dx *= -1 + dx *= -1 else: corner = ob.Client.TopLeft - w = _cw + _dx - h = _ch + _dy + w = _cw + dx + h = _ch + dy global resize_popup if resize_rubberband: