aboutsummaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-11-29 23:02:32 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-11-29 23:02:32 +0000
commit06020d8995eae2f7a4c926d0dd0b485485eea861 (patch)
tree235c83967cf705432a603dc3324a23b7ded67944 /data
parentfffbe6bde30871bcaf04df8f8d69e53caa844567 (diff)
downloadenigma2-06020d8995eae2f7a4c926d0dd0b485485eea861.tar.gz
enigma2-06020d8995eae2f7a4c926d0dd0b485485eea861.zip
fix unknown bug by adding 50 pixels
Diffstat (limited to 'data')
-rw-r--r--data/skin.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/skin.xml b/data/skin.xml
index 50dcf150..a5e8c6d5 100644
--- a/data/skin.xml
+++ b/data/skin.xml
@@ -264,7 +264,7 @@ orgpos = self.instance.position()
textsize = self["text"].getSize()
# y size still must be fixed in font stuff...
-textsize = (textsize[0], textsize[1] + 50)
+textsize = (textsize[0] + 50, textsize[1] + 50)
wsizex = textsize[0] + 50
wsizey = textsize[1] + 50
if (280 > wsizex):