[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [57428] trunk/blender/release/scripts/ startup/bl_ui/properties_freestyle.py: Removed the Material Boundary option from the edge detection options in

Tamito Kajiyama rd6t-kjym at asahi-net.or.jp
Thu Jun 13 13:10:18 CEST 2013


Revision: 57428
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=57428
Author:   kjym3
Date:     2013-06-13 11:10:18 +0000 (Thu, 13 Jun 2013)
Log Message:
-----------
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!

Modified Paths:
--------------
    trunk/blender/release/scripts/startup/bl_ui/properties_freestyle.py

Modified: trunk/blender/release/scripts/startup/bl_ui/properties_freestyle.py
===================================================================
--- trunk/blender/release/scripts/startup/bl_ui/properties_freestyle.py	2013-06-13 10:25:41 UTC (rev 57427)
+++ trunk/blender/release/scripts/startup/bl_ui/properties_freestyle.py	2013-06-13 11:10:18 UTC (rev 57428)
@@ -138,7 +138,8 @@
         
         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:




More information about the Bf-blender-cvs mailing list