[Bf-blender-cvs] [204ba76] master: A bit more helpful doc strings on the curve render resolution properties.

Lukas Tönne noreply at git.blender.org
Mon May 12 08:14:29 CEST 2014


Commit: 204ba76ee05d0bc25b34119fee0a7de11d766666
Author: Lukas Tönne
Date:   Mon May 12 08:07:33 2014 +0200
https://developer.blender.org/rB204ba76ee05d0bc25b34119fee0a7de11d766666

A bit more helpful doc strings on the curve render resolution properties.

===================================================================

M	source/blender/makesrna/intern/rna_curve.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_curve.c b/source/blender/makesrna/intern/rna_curve.c
index b991940..142b4ed 100644
--- a/source/blender/makesrna/intern/rna_curve.c
+++ b/source/blender/makesrna/intern/rna_curve.c
@@ -1416,14 +1416,14 @@ static void rna_def_curve(BlenderRNA *brna)
 	RNA_def_property_range(prop, 0, 1024);
 	RNA_def_property_ui_range(prop, 0, 64, 1, -1);
 	RNA_def_property_ui_text(prop, "Render Resolution U",
-	                         "Surface resolution in U direction used while rendering (zero skips this property)");
+	                         "Surface resolution in U direction used while rendering (zero uses preview resolution)");
 	
 	prop = RNA_def_property(srna, "render_resolution_v", PROP_INT, PROP_NONE);
 	RNA_def_property_int_sdna(prop, NULL, "resolv_ren");
 	RNA_def_property_ui_range(prop, 0, 64, 1, -1);
 	RNA_def_property_range(prop, 0, 1024);
 	RNA_def_property_ui_text(prop, "Render Resolution V",
-	                         "Surface resolution in V direction used while rendering (zero skips this property)");
+	                         "Surface resolution in V direction used while rendering (zero uses preview resolution)");
 	
 	
 	prop = RNA_def_property(srna, "eval_time", PROP_FLOAT, PROP_NONE);




More information about the Bf-blender-cvs mailing list