[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [33102] trunk/blender: Curve' s UI minor fix:

Sergey Sharybin g.ulairi at gmail.com
Tue Nov 16 14:25:26 CET 2010


Revision: 33102
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=33102
Author:   nazgul
Date:     2010-11-16 14:25:21 +0100 (Tue, 16 Nov 2010)

Log Message:
-----------
Curve's UI minor fix:

- "Use Deformed" replaced back with "Fill Deformed"
- Use a bit more informative tooltip for this option

Modified Paths:
--------------
    trunk/blender/release/scripts/ui/properties_data_curve.py
    trunk/blender/source/blender/makesrna/intern/rna_curve.c

Modified: trunk/blender/release/scripts/ui/properties_data_curve.py
===================================================================
--- trunk/blender/release/scripts/ui/properties_data_curve.py	2010-11-16 13:08:24 UTC (rev 33101)
+++ trunk/blender/release/scripts/ui/properties_data_curve.py	2010-11-16 13:25:21 UTC (rev 33102)
@@ -115,7 +115,7 @@
             sub.label(text="Fill:")
             sub.prop(curve, "use_fill_front")
             sub.prop(curve, "use_fill_back")
-            sub.prop(curve, "use_fill_deform", text="Use Deformed")
+            sub.prop(curve, "use_fill_deform", text="Fill Deformed")
 
         col.label(text="Textures:")
         col.prop(curve, "use_uv_as_generated")

Modified: trunk/blender/source/blender/makesrna/intern/rna_curve.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_curve.c	2010-11-16 13:08:24 UTC (rev 33101)
+++ trunk/blender/source/blender/makesrna/intern/rna_curve.c	2010-11-16 13:25:21 UTC (rev 33102)
@@ -1234,7 +1234,7 @@
 
 	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 */





More information about the Bf-blender-cvs mailing list