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/makesrna/intern/rna_curve.c
parent38bbd9c778d6733f21732df1f51dd2dc5236fa44 (diff)
Text3d: fix font family feature for unicode and correct tooltip
Diffstat (limited to 'source/blender/makesrna/intern/rna_curve.c')
-rw-r--r--source/blender/makesrna/intern/rna_curve.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_curve.c b/source/blender/makesrna/intern/rna_curve.c
index bb124600686..8aacfe470ea 100644
--- a/source/blender/makesrna/intern/rna_curve.c
+++ b/source/blender/makesrna/intern/rna_curve.c
@@ -1009,9 +1009,9 @@ static void rna_def_font(BlenderRNA *UNUSED(brna), StructRNA *srna)
prop = RNA_def_property(srna, "family", PROP_STRING, PROP_NONE);
RNA_def_property_string_maxlength(prop, MAX_ID_NAME - 2);
RNA_def_property_ui_text(prop, "Object Font",
- "Use Blender Objects as font characters (give font objects a common name "
- "followed by the character they represent, eg. family_a, family_b, etc, "
- "and turn on Verts Duplication)");
+ "Use Objects as font characters (give font objects a common name "
+ "followed by the character they represent, eg. 'family_a', 'family_b', etc, "
+ "and set this to 'family_', turn on Vertex Duplication)");
RNA_def_property_update(prop, 0, "rna_Curve_update_data");
prop = RNA_def_property(srna, "body", PROP_STRING, PROP_NONE);