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:
authorWilliam Reynish <billrey@me.com>2019-06-07 11:35:07 +0300
committerWilliam Reynish <billrey@me.com>2019-06-07 11:35:07 +0300
commitb290695149c9be1de360c67fdb154c99390f81c5 (patch)
tree1f180761f83f4515aad81f03e7a9c0bbd07a9a9a /release
parent4de7a7f2fabf24c43517f43f43bca630948dd13e (diff)
Sculpt toolbar: Group new Mask Lasso tool with the Mask Border tool
Also flip Simplify and Mask, so that all the mask-related tools are next to each other.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_toolsystem_toolbar.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
index 56e6536f3a2..a2b96c9d6c7 100644
--- a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
@@ -1907,9 +1907,11 @@ class VIEW3D_PT_tools_active(ToolSelectPanelHelper, Panel):
'SCULPT': [
_defs_sculpt.generate_from_brushes,
None,
+ (
+ _defs_sculpt.mask_border,
+ _defs_sculpt.mask_lasso,
+ ),
_defs_sculpt.hide_border,
- _defs_sculpt.mask_border,
- _defs_sculpt.mask_lasso,
None,
*_tools_annotate,
],