8000 Merge pull request #15774 from meeseeksmachine/auto-backport-of-pr-15… · matplotlib/matplotlib@8243ab5 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8243ab5

Browse files
authored
Merge pull request #15774 from meeseeksmachine/auto-backport-of-pr-15748-on-v3.2.x
Backport PR #15748 on branch v3.2.x (Fix incorrect macro in FT2Font setup.)
2 parents 1695093 + f49737c commit 8243ab5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ft2font_wrapper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ static int PyFT2Font_init(PyFT2Font *self, PyObject *args, PyObject *kwds)
569569
CALL_CPP_FULL(
570570
"FT2Font", (self->x = new FT2Font(open_args, hinting_factor)), PyFT2Font_fail(self), -1);
571571

572-
CALL_CPP("FT2Font->set_kerning_factor", (self->x->set_kerning_factor(kerning_factor)));
572+
CALL_CPP_INIT("FT2Font->set_kerning_factor", (self->x->set_kerning_factor(kerning_factor)));
573573

574574
Py_INCREF(fname);
575575
self->fname = fname;

0 commit comments

Comments
 (0)
0