X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;ds=sidebyside;f=scripts%2Fmotion.py;h=03546b84e74147ee01fdf0621053f7987e3b0484;hb=741aecf842563284f4e756bf3d935d551aaad8fa;hp=174f3c8e2bebf93f455161c404e3018ad690e306;hpb=96a949ec1f2be9da216e4d228992d1ce6855a6d4;p=chaz%2Fopenbox diff --git a/scripts/motion.py b/scripts/motion.py index 174f3c8e..03546b84 100644 --- a/scripts/motion.py +++ b/scripts/motion.py @@ -86,13 +86,18 @@ def _motion_grab(data): else: raise RuntimeError +_last_x = 0 +_last_y = 0 + def _do_move(): global _screen, _client, _cx, _cy, _dx, _dy - x = _cx + _dx - y = _cy + _dy + # get destination x/y for the *frame* + x = _cx + _dx + _client.frame.rect().x() - _client.area().x() + y = _cy + _dy + _client.frame.rect().y() - _client.area().y() global edge_resistance + global _last_x, _last_y if edge_resistance: fs = _client.frame.size() w = _client.area().width() + fs.left + fs.right @@ -104,18 +109,26 @@ def _do_move(): t = area.top() b = area.bottom() - h + 1 # left screen edge - if x < l and x >= l - edge_resistance: + if _last_x > x and x < l and x >= l - edge_resistance: x = l # right screen edge - if x > r and x <= r + edge_resistance: + if _last_x < x and x > r and x <= r + edge_resistance: x = r # top screen edge - if y < t and y >= t - edge_resistance: + if _last_y > y and y < t and y >= t - edge_resistance: y = t # right screen edge - if y > b and y <= b + edge_resistance: + if _last_y < y and y > b and y <= b + edge_resistance: y = b + global _inmove + if not _inmove: + _last_x = 0 + _last_y = 0 + else: + _last_x = x + _last_y = y + global move_rubberband if move_rubberband: # draw the outline ...