This commit is contained in:
Kovid Goyal 2024-05-28 15:09:54 +05:30
parent 09ad164ed5
commit f10f4e8e5b
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

@ -433,6 +433,10 @@ specialize_font_descriptor(PyObject *base_descriptor, FONTS_DATA_HANDLE fg) {
if (axes) {
if (PyDict_SetItemString(ans, "axes", axes) != 0) return NULL;
}
PyObject *features = PyDict_GetItemString(base_descriptor, "features");
if (features) {
if (PyDict_SetItemString(ans, "features", features) != 0) return NULL;
}
Py_INCREF(ans);
return ans;
end: