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:
authorPeter Fog <tintwotin>2020-12-16 00:13:26 +0300
committerRichard Antalik <richardantalik@gmail.com>2020-12-16 00:30:01 +0300
commitf44dea05583889107f640bbf45f546409432303f (patch)
treecb617d182f3d80e1e1cb633f31472e7f1a9f5369
parentdd9d12bf45edac33fb414b9d7e4a0a716b2fa4d0 (diff)
VSE: Reorder Tools in Sequencer/Preview
When in Sequencer/Preview mode, the Sampler was on top, which normally is the place of Select, and Annotation seems to be after Sampler in the bottom in the various editors. Reviewed By: ISS Differential Revision: https://developer.blender.org/D9821
-rw-r--r--release/scripts/startup/bl_ui/space_toolsystem_toolbar.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
index a69e3974193..0411d5c64bc 100644
--- a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
@@ -2903,10 +2903,10 @@ class SEQUENCER_PT_tools_active(ToolSelectPanelHelper, Panel):
_defs_sequencer_generic.blade,
],
'SEQUENCER_PREVIEW': [
- _defs_sequencer_generic.sample,
*_tools_select,
- *_tools_annotate,
_defs_sequencer_generic.blade,
+ _defs_sequencer_generic.sample,
+ *_tools_annotate,
],
}