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:
authorAntony Riakiotakis <kalast@gmail.com>2014-09-25 17:34:59 +0400
committerAntony Riakiotakis <kalast@gmail.com>2014-09-25 17:38:32 +0400
commit98153778b52c8df88b1bb8ebf9d4c6951f16b3a9 (patch)
treecbe8baa040a2157f1eb21eb581d74b20c845ac49 /release
parenta2386b3e20ea4ddf56525221216aa06900050d5a (diff)
Expose show brush property for UV sculpting.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_image.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_image.py b/release/scripts/startup/bl_ui/space_image.py
index c90e4cdf3e9..927e517ef21 100644
--- a/release/scripts/startup/bl_ui/space_image.py
+++ b/release/scripts/startup/bl_ui/space_image.py
@@ -1015,11 +1015,13 @@ class IMAGE_UV_sculpt(Panel, ImagePaintPanel):
col = layout.column()
col.prop(toolsettings, "uv_sculpt_lock_borders")
col.prop(toolsettings, "uv_sculpt_all_islands")
- col.prop(toolsettings, "uv_sculpt_tool")
+ col.prop(toolsettings, "uv_sculpt_tool")
if toolsettings.uv_sculpt_tool == 'RELAX':
col.prop(toolsettings, "uv_relax_method")
+ col.prop(uvsculpt, "show_brush")
+
class IMAGE_PT_tools_mask(MASK_PT_tools, Panel):
bl_space_type = 'IMAGE_EDITOR'