projects
/
dana
/
openbox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b2079b5
)
code style fix
author
Dana Jansens
<danakj@orodu.net>
Fri, 27 Dec 2002 09:07:22 +0000
(09:07 +0000)
committer
Dana Jansens
<danakj@orodu.net>
Fri, 27 Dec 2002 09:07:22 +0000
(09:07 +0000)
scripts/clientmotion.py
patch
|
blob
|
history
diff --git
a/scripts/clientmotion.py
b/scripts/clientmotion.py
index 4703c050b89cc3d9a032ea62cc9af4c543cc4732..a8f4c306918d0507b7ac9d5ec1a221a07e2e05e5 100644
(file)
--- 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)