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 <billreynish>2018-10-18 13:13:06 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-10-18 13:14:25 +0300
commitb3814d8645a1f232478210d8a5ae00c101d8b045 (patch)
tree0dfac0087f9d795af2d0a2a661d03aaa2822de2d /release/scripts/startup/bl_ui/properties_data_bone.py
parent108475dc019d0b7f7c1f20acdd528832edc88901 (diff)
UI: closure some more panels by default, leaving open mostly 1 per tab.
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_data_bone.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_bone.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_bone.py b/release/scripts/startup/bl_ui/properties_data_bone.py
index bdee55666fd..60464ca48cb 100644
--- a/release/scripts/startup/bl_ui/properties_data_bone.py
+++ b/release/scripts/startup/bl_ui/properties_data_bone.py
@@ -123,7 +123,7 @@ class BONE_PT_transform(BoneButtonsPanel, Panel):
class BONE_PT_curved(BoneButtonsPanel, Panel):
bl_label = "Bendy Bones"
- #bl_options = {'DEFAULT_CLOSED'}
+ bl_options = {'DEFAULT_CLOSED'}
def draw(self, context):
ob = context.object
@@ -195,6 +195,7 @@ class BONE_PT_curved(BoneButtonsPanel, Panel):
class BONE_PT_relations(BoneButtonsPanel, Panel):
+ bl_options = {'DEFAULT_CLOSED'}
bl_label = "Relations"
def draw(self, context):
@@ -240,6 +241,7 @@ class BONE_PT_relations(BoneButtonsPanel, Panel):
class BONE_PT_display(BoneButtonsPanel, Panel):
bl_label = "Display"
+ bl_options = {'DEFAULT_CLOSED'}
@classmethod
def poll(cls, context):