fix calculation of dynamic height of the ChoiceBox screen
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Thu, 4 May 2006 16:04:33 +0000 (16:04 +0000)
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Thu, 4 May 2006 16:04:33 +0000 (16:04 +0000)
data/skin_default.xml

index 31f7fb90a88c5da6e29b7275a3ada94e39c6b9b4..cddc18f49d38cb447d8a3e4efcb4d2c30839f344 100644 (file)
@@ -291,11 +291,12 @@ textsize = self["text"].getSize()
 # y size still must be fixed in font stuff...
 textsize = (textsize[0] + 50, textsize[1] + 50)
 count = len(self.list)
-if count > 6:
-       count = 6
-offset = 30 * count
+if count > 10:
+       count = 10
+offset = 25 * count
 wsizex = textsize[0] + 60
 wsizey = textsize[1] + offset
+
 if (450 > wsizex):
        wsizex = 450
 wsize = (wsizex, wsizey)
@@ -308,7 +309,7 @@ self.instance.resize(eSize(*wsize))
 self["text"].instance.resize(eSize(*textsize))
 
 # move list
-listsize = (wsizex, 30 * len(self.list))
+listsize = (wsizex, 25 * count)
 self["list"].instance.move(ePoint(0, textsize[1]))
 self["list"].instance.resize(eSize(*listsize))