X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=data%2Fskin.xml;h=b2ba569a2b302b0ceeb3c3be771e78743989508c;hp=0febcc3f4f6eddbe1c2f96ec273160c3d3f2e2c4;hb=e330dbae62e83dd2aa2ff63a984519a84b23c3ad;hpb=9aa7c938a1f03c1e42ed370c4895e549e7a6d80d diff --git a/data/skin.xml b/data/skin.xml index 0febcc3..b2ba569 100644 --- a/data/skin.xml +++ b/data/skin.xml @@ -60,14 +60,14 @@ - + - + - - + + @@ -81,15 +81,15 @@ - - + + - + - + @@ -99,6 +99,8 @@ + + @@ -141,8 +143,9 @@ - - + + + @@ -162,8 +165,9 @@ - - + + + @@ -173,16 +177,27 @@ - - - + + + + + + + + + - + + + + + + @@ -206,8 +221,14 @@ + + + + - + + + # this should be factored out into some helper code, but currently demonstrates applets. from enigma import eSize, ePoint @@ -218,7 +239,12 @@ textsize = self["text"].getSize() # y size still must be fixed in font stuff... textsize = (textsize[0], textsize[1] + 50) -wsize = (textsize[0] + 50, textsize[1] + 50) +wsizex = textsize[0] + 50 +wsizey = textsize[1] + 50 +if (280 > wsizex): + wsizex = 280 +wsize = (wsizex, wsizey) + # resize self.instance.resize(eSize(*wsize))