all repos — openbox @ 299f7ad213532a76d748ce5ef02e7a147b75c1fc

openbox fork - make it a bit more like ryudo

position is a function
Dana Jansens danakj@orodu.net
commit

299f7ad213532a76d748ce5ef02e7a147b75c1fc

parent

56d2f942aedbd212779d40c36eda1a89c931e960

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

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

@@ -105,8 +105,8 @@ try: x, y = POPUP_COORDS

except: x = y = 0 if x < 0: x += area.right() - size.width() + 2 if y < 0: y += area.bottom() - size.height() + 2 - x += area.position.x() - y += area.position.y() + x += area.position().x() + y += area.position().y() _popwidget.moveresize(otk.Rect(x, y, size.width(), size.height())) def _motion_grab(data):