height fix

This commit is contained in:
Laserlicht
2023-09-29 00:08:25 +02:00
committed by GitHub
parent 9ba1aa652d
commit 293214bb61
+1 -1
View File
@@ -72,7 +72,7 @@ CTrueTypeFont::~CTrueTypeFont() = default;
size_t CTrueTypeFont::getLineHeight() const
{
if (fallbackFont)
fallbackFont->getLineHeight();
return fallbackFont->getLineHeight();
return TTF_FontHeight(font.get());
}