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-05 18:33:45 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-01-05 18:37:19 +0400
commit3b024d63fe50d8e69d2d76e009f032cad3f1a538 (patch)
treec96e952a539c783b3e91457f5c673bb98c9832bc /source/blender/editors/curve
parent38bbd9c778d6733f21732df1f51dd2dc5236fa44 (diff)
Text3d: fix font family feature for unicode and correct tooltip
Diffstat (limited to 'source/blender/editors/curve')
-rw-r--r--source/blender/editors/curve/editfont.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/curve/editfont.c b/source/blender/editors/curve/editfont.c
index 2263c69b712..1fbd3a0f9f5 100644
--- a/source/blender/editors/curve/editfont.c
+++ b/source/blender/editors/curve/editfont.c
@@ -264,7 +264,7 @@ static void text_update_edited(bContext *C, Scene *scene, Object *obedit, const
}
}
- BKE_vfont_to_curve(bmain, scene, obedit, mode, NULL);
+ BKE_vfont_to_curve(bmain, scene, obedit, mode);
if (recalc)
DAG_id_tag_update(obedit->data, 0);
@@ -1037,7 +1037,7 @@ static int move_cursor(bContext *C, int type, int select)
if (ef->selstart) {
struct Main *bmain = CTX_data_main(C);
ef->selstart = ef->selend = 0;
- BKE_vfont_to_curve(bmain, scene, obedit, FO_SELCHANGE, NULL);
+ BKE_vfont_to_curve(bmain, scene, obedit, FO_SELCHANGE);
}
}