Skip to content

Commit

Permalink
Fix MessageBox text autoresize
Browse files Browse the repository at this point in the history
  • Loading branch information
Taapat committed Nov 8, 2023
1 parent 081887e commit d437c9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion usr/share/enigma2/SimpleGray-HD/skin_templates.xml
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ from enigma import eSize, ePoint
from skin import getSkinFactor
f = getSkinFactor()
textsize = self["text"].getSize()
textsize = (textsize[0] + 2, textsize[1])
textsize = (int(textsize[0] * 1.03), textsize[1])
wsizex = textsize[0] + 86 * f
wsizey = textsize[1] + 15 * f
if 65 * f > wsizey:
Expand Down

0 comments on commit d437c9e

Please sign in to comment.