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>2014-04-24 18:27:58 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-04-24 18:45:28 +0400
commitece64c7ffdc82cdf2d129f73112470a2eca598b6 (patch)
tree8a943d4be89866882b09a92625af4a09eb36dcdb /release
parent95eb5fb72776d9da5b24cd16262f671d5c762a40 (diff)
Freestyle: minor UI improvements.
* The button icon for jumping to the Render Layers tab of the Properties context is now RENDERLAYERS. Previous icon BUTS was too general. * Thickness position options are grayed out if not applicable. These options are applied only when plain chaining is used with the Same Object option enabled.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_freestyle.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/properties_freestyle.py b/release/scripts/startup/bl_ui/properties_freestyle.py
index 207e6bc3087..63e4f4aa5f6 100644
--- a/release/scripts/startup/bl_ui/properties_freestyle.py
+++ b/release/scripts/startup/bl_ui/properties_freestyle.py
@@ -61,7 +61,7 @@ class RENDER_PT_freestyle(RenderFreestyleButtonsPanel, Panel):
row = layout.row()
row.label(text="Line style settings are in the Render Layers tab")
- row.operator("wm.properties_context_change", text="", icon='BUTS').context = 'RENDER_LAYER'
+ row.operator("wm.properties_context_change", text="", icon='RENDERLAYERS').context = 'RENDER_LAYER'
# Render layer properties
@@ -654,9 +654,11 @@ class RENDERLAYER_PT_freestyle_linestyle(RenderLayerFreestyleEditorButtonsPanel,
row = col.row()
row.label(text="Base Thickness:")
row.prop(linestyle, "thickness")
- row = col.row()
+ subcol = col.column()
+ subcol.active = linestyle.chaining == 'PLAIN' and linestyle.use_same_object
+ row = subcol.row()
row.prop(linestyle, "thickness_position", expand=True)
- row = col.row()
+ row = subcol.row()
row.prop(linestyle, "thickness_ratio")
row.active = (linestyle.thickness_position == 'RELATIVE')
col = layout.column()