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:
authorJoshua Leung <aligorith@gmail.com>2018-08-02 05:44:17 +0300
committerJoshua Leung <aligorith@gmail.com>2018-08-02 06:04:47 +0300
commit8a0760eba2fe8ce31b0d054c498e9a264795c2b4 (patch)
treeaa9c6f65173aa305a450e18415ac03bae5b549b0 /release/scripts/startup/bl_ui/properties_data_armature.py
parentab49b7d73967b61e05108156980c204065cbfebf (diff)
Armature Panel Tweaks - Motion Paths/Ghosting
Since most animators find Motion Paths more useful than Armature Ghosting: * Move Motion Paths before Ghosting settings (less scrolling) * Collapse Ghosting panel by default * Open Motion Paths panel by default instead
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_data_armature.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_armature.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_armature.py b/release/scripts/startup/bl_ui/properties_data_armature.py
index 63d80638ae2..8ea20ada390 100644
--- a/release/scripts/startup/bl_ui/properties_data_armature.py
+++ b/release/scripts/startup/bl_ui/properties_data_armature.py
@@ -211,6 +211,7 @@ class DATA_PT_pose_library(ArmatureButtonsPanel, Panel):
# TODO: this panel will soon be deprecated too
class DATA_PT_ghost(ArmatureButtonsPanel, Panel):
bl_label = "Ghost"
+ bl_options = {'DEFAULT_CLOSED'}
def draw(self, context):
layout = self.layout
@@ -340,9 +341,9 @@ classes = (
DATA_MT_bone_group_specials,
DATA_PT_bone_groups,
DATA_PT_pose_library,
+ DATA_PT_motion_paths,
DATA_PT_ghost,
DATA_PT_iksolver_itasc,
- DATA_PT_motion_paths,
DATA_PT_custom_props_arm,
)