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:
authorCampbell Barton <ideasman42@gmail.com>2018-04-25 09:20:01 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-04-25 09:20:01 +0300
commitdeb98cfe5a76b8b7d08277b57eef8d8e0772ad0d (patch)
treebcff2a32f7ae9e561d2ea3475f33a12725d09df4 /release/scripts
parentca49a9edce2fdc74e40819e02c6d6f6b09c81b61 (diff)
UI: show all pain mode panels in the topbar
This shows some which need to be hidden (eventually).
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/startup/bl_ui/space_topbar.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/space_topbar.py b/release/scripts/startup/bl_ui/space_topbar.py
index ad8c68fa7c9..3eded5e0b46 100644
--- a/release/scripts/startup/bl_ui/space_topbar.py
+++ b/release/scripts/startup/bl_ui/space_topbar.py
@@ -120,13 +120,13 @@ class TOPBAR_HT_lower_bar(Header):
# (obviously separated for from the users POV)
if mode == 'SCULPT':
- layout.popover_group(space_type='VIEW_3D', region_type='TOOLS', context="", category="Tools")
+ layout.popover_group(space_type='VIEW_3D', region_type='TOOLS', context="", category="")
elif mode == 'PAINT_VERTEX':
- layout.popover_group(space_type='VIEW_3D', region_type='TOOLS', context="", category="Tools")
+ layout.popover_group(space_type='VIEW_3D', region_type='TOOLS', context="", category="")
elif mode == 'PAINT_WEIGHT':
- layout.popover_group(space_type='VIEW_3D', region_type='TOOLS', context="", category="Tools")
+ layout.popover_group(space_type='VIEW_3D', region_type='TOOLS', context="", category="")
elif mode == 'PAINT_TEXTURE':
- layout.popover_group(space_type='VIEW_3D', region_type='TOOLS', context="", category="Tools")
+ layout.popover_group(space_type='VIEW_3D', region_type='TOOLS', context="", category="")
elif mode == 'EDIT_ARMATURE':
layout.popover_group(space_type='VIEW_3D', region_type='TOOLS', context=".armature_edit", category="")