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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2013-04-22 18:26:57 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2013-04-22 18:26:57 +0400
commit919ecbe55d44dd13a8a07c354a00b9bfc9ec8596 (patch)
tree337d164dba5e1d4dc288766c41f7e85c709efd69 /source/blender/makesrna/intern/rna_space.c
parent5580b568765a89bbe02f21cee839c585260ef6c2 (diff)
Fix #35054: adjust tooltip for Render Border option in 3D view panel to say
it has an effect outside of the camera view.
Diffstat (limited to 'source/blender/makesrna/intern/rna_space.c')
-rw-r--r--source/blender/makesrna/intern/rna_space.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index da9e13c03db..1207b597651 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -1657,7 +1657,7 @@ static void rna_def_space_view3d(BlenderRNA *brna)
RNA_def_property_boolean_sdna(prop, NULL, "flag2", V3D_RENDER_BORDER);
RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
RNA_def_property_ui_text(prop, "Render Border",
- "Use a user-defined border region within the frame size for rendered viewport");
+ "Use a region within the frame size for rendered viewport (when not viewing through the camera)");
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D, NULL);
prop = RNA_def_property(srna, "render_border_min_x", PROP_FLOAT, PROP_NONE);