code style fix
This commit is contained in:
parent
b2079b56e4
commit
656701140b
1 changed files with 1 additions and 2 deletions
|
@ -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):
|
def def_motion(action, win, type, modifiers, xroot, yroot, time):
|
||||||
client = Openbox_findClient(openbox, win)
|
client = Openbox_findClient(openbox, win)
|
||||||
|
if not client: return
|
||||||
|
|
||||||
global posqueue
|
global posqueue
|
||||||
dx = xroot - posqueue[0][1]
|
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();
|
# _dx = x_root - _posqueue[0]->pos.x();
|
||||||
# _dy = y_root - _posqueue[0]->pos.y();
|
# _dy = y_root - _posqueue[0]->pos.y();
|
||||||
|
|
||||||
if not client:
|
|
||||||
return
|
|
||||||
area = posqueue[0][3] # A Rect
|
area = posqueue[0][3] # A Rect
|
||||||
if (type == Type_Titlebar) or (type == Type_Label):
|
if (type == Type_Titlebar) or (type == Type_Label):
|
||||||
OBClient_move(client, Rect_x(area) + dx, Rect_y(area) + dy)
|
OBClient_move(client, Rect_x(area) + dx, Rect_y(area) + dy)
|
||||||
|
|
Loading…
Reference in a new issue