position relative to the window properly
authorDana Jansens <danakj@orodu.net>
Wed, 19 Feb 2003 01:17:14 +0000 (01:17 +0000)
committerDana Jansens <danakj@orodu.net>
Wed, 19 Feb 2003 01:17:14 +0000 (01:17 +0000)
scripts/motion.py

index bf52bd9..cc17803 100644 (file)
@@ -105,6 +105,8 @@ def _place_popup():
         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()
     _popwidget.moveresize(otk.Rect(x, y, size.width(), size.height()))
 
 def _motion_grab(data):