There is a bug in the code that wrongly assigns a y value to a width. Thus
using a "position" attribute (like "position=30,20") in freevo.conf does not
seem to have any effect on the vertical positioning of the screen. The
attached file should fix it (just a 1 line change).
Index: freevo/src/config.py
===================================================================
--- freevo/src/config.py	(revision 10849)
+++ freevo/src/config.py	(working copy)
@@ -563,7 +563,7 @@
         w, h = CONF.geometry.split('x')
         x, y = CONF.position.split(',')
         CONF.width, CONF.height = int(w), int(h)
-        CONF.x, CONF.w = int(x), int(y)
+        CONF.x, CONF.y = int(x), int(y)
         break
 else:
     print
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel

Reply via email to