* src/sdf/ftsdfrend.c (sdf_property_set): Minor fix.

This commit is contained in:
Anuj Verma 2020-07-15 08:13:51 +05:30 committed by anujverma
parent d40fc55dad
commit 08d5a325dc
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2020-07-15 Anuj Verma <anujv@iitbhilai.ac.in>
* src/sdf/ftsdfrend.c (sdf_property_set): Minor fix.
2020-07-14 Anuj Verma <anujv@iitbhilai.ac.in>
[sdf] Temporary change.

View File

@ -85,7 +85,7 @@
FT_Int val = *(const FT_Int*)value;
render->optimization = val ? 1 : 0;
render->optimization = val;
FT_TRACE7(( "[sdf] sdf_property_set: "
"updated property `optimization' to %d\n", val ));
}