all repos — openbox @ 656701140bd636d7ae70c544d2ed1cf8479275ca

openbox fork - make it a bit more like ryudo

code style fix
Dana Jansens danakj@orodu.net
commit

656701140bd636d7ae70c544d2ed1cf8479275ca

parent

b2079b56e4b2ea398d67fb5e15614797a0236f28

1 files changed, 1 insertions(+), 2 deletions(-)

jump to
M scripts/clientmotion.pyscripts/clientmotion.py

@@ -45,6 +45,7 @@

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 @@ dy = yroot - posqueue[0][2]

# _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)