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>2017-03-19 18:34:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-03-19 18:37:55 +0300
commit19d493ee10987a049df2b1d6d06d6d9054e35469 (patch)
tree3375895b7fe8bb7baea1bc9d4f3aeeafe68f17af /release/scripts/startup/bl_ui/space_time.py
parent84935998a73de367b31e3e9604942125601de553 (diff)
Moving classes to separate listing broke panel order
Although this wasn't so obvious since it only showed up for factory settings and in the preferences window. Panel display order depends on registration order, Sorry for the noise. On the bright side we no longer need to move classes around to re-arrange panels.
Diffstat (limited to 'release/scripts/startup/bl_ui/space_time.py')
-rw-r--r--release/scripts/startup/bl_ui/space_time.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/space_time.py b/release/scripts/startup/bl_ui/space_time.py
index 9b2f6b69f80..b9a25cd72a0 100644
--- a/release/scripts/startup/bl_ui/space_time.py
+++ b/release/scripts/startup/bl_ui/space_time.py
@@ -271,13 +271,13 @@ def marker_menu_generic(layout):
classes = (
TIME_HT_header,
- TIME_MT_autokey,
- TIME_MT_cache,
TIME_MT_editor_menus,
- TIME_MT_frame,
TIME_MT_marker,
- TIME_MT_playback,
TIME_MT_view,
+ TIME_MT_cache,
+ TIME_MT_frame,
+ TIME_MT_playback,
+ TIME_MT_autokey,
)
if __name__ == "__main__": # only for live edit.