[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [55929] trunk/blender/release/scripts/ startup/bl_ui/properties_freestyle.py: Fix for [#34934] Freestyle options are in wrong tab.

Tamito Kajiyama rd6t-kjym at asahi-net.or.jp
Wed Apr 10 01:54:12 CEST 2013


Revision: 55929
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=55929
Author:   kjym3
Date:     2013-04-09 23:54:11 +0000 (Tue, 09 Apr 2013)
Log Message:
-----------
Fix for [#34934] Freestyle options are in wrong tab.

Added a label to guide users to line style settings in the Render Layers context
(in line with the similar labels found in the Cloth and Soft Body modifier panels),
so that Freestyle options per render layer can be more easily found.

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-04-09 20:48:53 UTC (rev 55928)
+++ trunk/blender/release/scripts/startup/bl_ui/properties_freestyle.py	2013-04-09 23:54:11 UTC (rev 55929)
@@ -60,7 +60,10 @@
         row.active = (rd.line_thickness_mode == 'ABSOLUTE')
         row.prop(rd, "line_thickness")
 
+        split = layout.split()
+        split.label(text="Line style settings are found in the Render Layers context")
 
+
 # Render layer properties
         
 class RenderLayerFreestyleButtonsPanel():




More information about the Bf-blender-cvs mailing list