diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-30 22:02:24 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-30 22:02:24 +0000 |
| commit | a0389d0cd6da44e8efba9910b59eea1cf65b48ca (patch) | |
| tree | 7e338df607ecd70f15e01f20f8b793e1016602aa /scripts | |
| parent | 610950024f8d156a91ece7f5c05a0f949ec8727b (diff) | |
dont fux up the _dx and _dy for resizing
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/motion.py | 13 |
1 files changed, 8 insertions, 5 deletions
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: |
