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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2013-06-13 15:10:18 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2013-06-13 15:10:18 +0400
commitd958144b65599a8ffef14c39addee109fc4427f9 (patch)
tree4caf65569fa10533436ecffb8d4edabdcc46c943 /release
parent54a42a42549bb004656dddf99a76835b79d94d7e (diff)
Removed the Material Boundary option from the edge detection options in
the Parameter Editor mode. The Material Boundary toggle button takes effect only in the Python Scripting mode. Instead the Parameter Editor mode automatically determines which edge types need to be computed on the basis of user-specified line selection criteria in terms of edge types. Problem report from Light BWK through personal communications, thanks!
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_freestyle.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_freestyle.py b/release/scripts/startup/bl_ui/properties_freestyle.py
index 528608790cd..96321eded50 100644
--- a/release/scripts/startup/bl_ui/properties_freestyle.py
+++ b/release/scripts/startup/bl_ui/properties_freestyle.py
@@ -138,7 +138,8 @@ class RENDERLAYER_PT_freestyle(RenderLayerFreestyleButtonsPanel, Panel):
col = split.column()
col.prop(freestyle, "use_smoothness")
- col.prop(freestyle, "use_material_boundaries")
+ if freestyle.mode == 'SCRIPT':
+ col.prop(freestyle, "use_material_boundaries")
# Advanced options are hidden by default to warn new users
if freestyle.use_advanced_options: