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@gmail.com>2018-11-05 00:34:20 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-11-05 02:22:33 +0300
commit4e37796976f9cbea24f3e94e0145cf280a5918f9 (patch)
treef38aec6a337bba3433cd3dfb7118aa70dcda6b71 /source/blender/makesrna/intern/rna_scene.c
parent287c023b8535ba42170d1c8ec56e4c258ff70ca5 (diff)
Fix various Freestyle rendering bugs.
Diffstat (limited to 'source/blender/makesrna/intern/rna_scene.c')
-rw-r--r--source/blender/makesrna/intern/rna_scene.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index b57156bcc97..e4e6cd974d9 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -3525,7 +3525,7 @@ void rna_def_freestyle_settings(BlenderRNA *brna)
"Select silhouettes (edges at the boundary of visible and hidden faces)");
RNA_def_property_update(prop, NC_SCENE | ND_RENDER_OPTIONS, "rna_Scene_freestyle_update");
- prop = RNA_def_property(srna, "select_box", PROP_BOOLEAN, PROP_NONE);
+ prop = RNA_def_property(srna, "select_border", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "edge_types", FREESTYLE_FE_BORDER);
RNA_def_property_ui_text(prop, "Border", "Select border edges (open mesh edges)");
RNA_def_property_update(prop, NC_SCENE | ND_RENDER_OPTIONS, "rna_Scene_freestyle_update");