X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/fe1ef885de1c0dc41100df0453ecf1c2ed5cf7e8..e330dbae62e83dd2aa2ff63a984519a84b23c3ad:/data/skin.xml?ds=sidebyside diff --git a/data/skin.xml b/data/skin.xml index bf6465cd..b2ba569a 100644 --- a/data/skin.xml +++ b/data/skin.xml @@ -81,15 +81,15 @@ - - + + - + - + @@ -99,6 +99,8 @@ + + @@ -141,8 +143,9 @@ - - + + + @@ -181,8 +184,20 @@ + + + + + + + - + + + + + + @@ -211,7 +226,9 @@ - + + + # this should be factored out into some helper code, but currently demonstrates applets. from enigma import eSize, ePoint @@ -222,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))