X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=scripts%2Fclientmotion.py;h=60de370bf13b02c77fdf9d1cccc51194c8ad0dcf;hb=3661e55fba3b5f3be246b3f65d650460282018ac;hp=4703c050b89cc3d9a032ea62cc9af4c543cc4732;hpb=b2079b56e4b2ea398d67fb5e15614797a0236f28;p=chaz%2Fopenbox diff --git a/scripts/clientmotion.py b/scripts/clientmotion.py index 4703c050..60de370b 100644 --- a/scripts/clientmotion.py +++ b/scripts/clientmotion.py @@ -26,7 +26,9 @@ def def_motion_release(action, win, type, modifiers, button, xroot, yroot, global posqueue for i in posqueue: if i[0] == button: - delete_Rect(i[3]) + client = Openbox_findClient(openbox, win) + if client: + delete_Rect(i[3]) posqueue.remove(i) break @@ -45,6 +47,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 +55,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)