We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee451c7 commit e79d858Copy full SHA for e79d858
lib/python/Screens/SubtitleDisplay.py
@@ -17,8 +17,8 @@ def __layoutFinished(self):
17
widgetInstance = self["subtitles"].instance
18
fontStyle = subtitleFonts.get("Subtitle_Regular", {})
19
fontSize = int(config.subtitles.subtitle_fontsize.value)
20
- fontFace = fontStyle.get("font", f"Regular;{fontSize * getSkinFactor()}")
21
- font = parseFont(fontFace)
+ fontFace = fontStyle.get("font", "Regular").split(";")[0]
+ font = parseFont(f"{fontFace};{fontSize * getSkinFactor()}")
22
widgetInstance.setFont(font)
23
widgetInstance.setZPosition(1)
24
widgetInstance.setWrap(0)
0 commit comments