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
path: root/source
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2010-11-16 16:25:21 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2010-11-16 16:25:21 +0300
commit3ad21a8b4c1f94d0d4adf8d8619e8e6eaf207368 (patch)
tree03ba9c9452afab14b74004170a4588bb4d15f065 /source
parentca95a1d1adb91375686566abed13b7144cce45a8 (diff)
Curve's UI minor fix:
- "Use Deformed" replaced back with "Fill Deformed" - Use a bit more informative tooltip for this option
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesrna/intern/rna_curve.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_curve.c b/source/blender/makesrna/intern/rna_curve.c
index e47a1226c96..9f59d3b8573 100644
--- a/source/blender/makesrna/intern/rna_curve.c
+++ b/source/blender/makesrna/intern/rna_curve.c
@@ -1234,7 +1234,7 @@ static void rna_def_curve(BlenderRNA *brna)
prop= RNA_def_property(srna, "use_fill_deform", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "flag", CU_DEFORM_FILL);
- RNA_def_property_ui_text(prop, "Fill deformed", "Fill curve after applying deformation");
+ RNA_def_property_ui_text(prop, "Fill deformed", "Fill curve after applying shape keys and all modifiers");
RNA_def_property_update(prop, 0, "rna_Curve_update_data");
/* texture space */