From 204ba76ee05d0bc25b34119fee0a7de11d766666 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20T=C3=B6nne?= Date: Mon, 12 May 2014 08:07:33 +0200 Subject: A bit more helpful doc strings on the curve render resolution properties. --- source/blender/makesrna/intern/rna_curve.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '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 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); -- cgit v1.2.3