FreeType: TextBar boldness fix

This commit is contained in:
rtw1x1
2026-02-04 10:50:00 +00:00
parent a3009f4bff
commit 4280220819
4 changed files with 26 additions and 13 deletions

View File

@@ -38,7 +38,7 @@ PyObject* grpCreateBigTextBar(PyObject* poSelf, PyObject* poArgs)
if (!PyTuple_GetInteger(poArgs, 2, &iFontSize))
return Py_BuildException();
CTextBar * pTextBar = new CTextBar(iFontSize, true);
CTextBar * pTextBar = new CTextBar(iFontSize, false);
if (!pTextBar->Create(iWidth, iHeight))
{
delete pTextBar;