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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-10-01 16:39:03 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-10-01 18:16:43 +0300
commitfd0250f1bc72def32850b7da894a36c08b8d0037 (patch)
treefa6c701e2ca1754c49784676e1ee69e948500172 /release/scripts/startup
parent057f2a1878ac1160c0c2154a29954e55762ddb5f (diff)
UI: collapse some paint / sculpt panels by default.
Diffstat (limited to 'release/scripts/startup')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 35a39361488..a5ab22da3ea 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -628,6 +628,7 @@ class VIEW3D_PT_stencil_projectpaint(View3DPanel, Panel):
class VIEW3D_PT_tools_brush_overlay(Panel, View3DPaintPanel):
bl_context = ".paint_common" # dot on purpose (access from topbar)
bl_label = "Overlay"
+ bl_options = {'DEFAULT_CLOSED'}
@classmethod
def poll(cls, context):
@@ -1036,6 +1037,7 @@ class VIEW3D_PT_tools_brush_appearance(Panel, View3DPaintPanel):
bl_context = ".paint_common" # dot on purpose (access from topbar)
bl_label = "Appearance"
bl_parent_id = "VIEW3D_PT_tools_brush_overlay"
+ bl_options = {'DEFAULT_CLOSED'}
@classmethod
def poll(cls, context):
@@ -1203,6 +1205,7 @@ class VIEW3D_PT_tools_imagepaint_symmetry(Panel, View3DPaintPanel):
class VIEW3D_PT_tools_projectpaint(View3DPaintPanel, Panel):
bl_context = ".imagepaint" # dot on purpose (access from topbar)
bl_label = "Project Paint"
+ bl_options = {'DEFAULT_CLOSED'}
@classmethod
def poll(cls, context):