Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-01-03 07:18:06 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-01-03 07:20:35 +0400
commita5cb2229abbc7d43f34dabea332afd33614fc0db (patch)
tree3b039eeccbcc69589b0c9ac98245f941435b9fcd /source/blender/makesrna/intern/rna_ID.c
parentf345414b89a9d94cca668c10ce8f0464d06dea4f (diff)
Text3d: avoid converting utf8 to wchar_t in editmode
Diffstat (limited to 'source/blender/makesrna/intern/rna_ID.c')
-rw-r--r--source/blender/makesrna/intern/rna_ID.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_ID.c b/source/blender/makesrna/intern/rna_ID.c
index 075f852a032..a36bd8e27c2 100644
--- a/source/blender/makesrna/intern/rna_ID.c
+++ b/source/blender/makesrna/intern/rna_ID.c
@@ -280,7 +280,7 @@ static void rna_ID_update_tag(ID *id, ReportList *reports, int flag)
if (ob->type == OB_FONT) {
Curve *cu = ob->data;
freedisplist(&cu->disp);
- BKE_vfont_to_curve(sce, ob, CU_LEFT);
+ BKE_vfont_to_curve(bmain, sce, ob, FO_EDIT, NULL);
}
#endif