diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-12-27 09:07:22 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-12-27 09:07:22 +0000 |
| commit | 656701140bd636d7ae70c544d2ed1cf8479275ca (patch) | |
| tree | 8e83a4900c927035332932280f924dc19884554d | |
| parent | b2079b56e4b2ea398d67fb5e15614797a0236f28 (diff) | |
code style fix
| -rw-r--r-- | scripts/clientmotion.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/clientmotion.py b/scripts/clientmotion.py index 4703c050..a8f4c306 100644 --- a/scripts/clientmotion.py +++ b/scripts/clientmotion.py @@ -45,6 +45,7 @@ def def_motion_release(action, win, type, modifiers, button, xroot, yroot, def def_motion(action, win, type, modifiers, xroot, yroot, time): client = Openbox_findClient(openbox, win) + if not client: return global posqueue dx = xroot - posqueue[0][1] @@ -52,8 +53,6 @@ def def_motion(action, win, type, modifiers, xroot, yroot, time): # _dx = x_root - _posqueue[0]->pos.x(); # _dy = y_root - _posqueue[0]->pos.y(); - if not client: - return area = posqueue[0][3] # A Rect if (type == Type_Titlebar) or (type == Type_Label): OBClient_move(client, Rect_x(area) + dx, Rect_y(area) + dy) |
