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:
authorLukas Tönne <lukas.toenne@gmail.com>2014-05-12 10:07:33 +0400
committerLukas Tönne <lukas.toenne@gmail.com>2014-05-12 10:07:33 +0400
commit204ba76ee05d0bc25b34119fee0a7de11d766666 (patch)
tree063f2de5a10c8da80caab7a668c8767510b96642 /source/blender/makesrna/intern/rna_curve.c
parent3d7d930e31992364caf586d89d4256af1b479dbb (diff)
A bit more helpful doc strings on the curve render resolution properties.
Diffstat (limited to 'source/blender/makesrna/intern/rna_curve.c')
-rw-r--r--source/blender/makesrna/intern/rna_curve.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_curve.c b/source/blender/makesrna/intern/rna_curve.c
index b99194066ca..142b4ed6574 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);