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 <billrey@me.com>2019-06-25 11:00:20 +0300
committerWilliam Reynish <billrey@me.com>2019-06-25 11:00:20 +0300
commitf93d3bd42b0d2567a503ef163c9c8c6403b14cc3 (patch)
treef8e63acd4bea149b7b1d5874eb67faafc4c99608 /release
parent3fa728a98ea7ac19a880e65e966238d3f0f3cbff (diff)
Sequencer UI: Move Refresh button from header to the View menus
This button didn't need to be so prominent, and clashed with the Sequencer sidebar
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index e717b36597f..9785f8e55de 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -106,10 +106,6 @@ class SEQUENCER_HT_header(Header):
layout.separator_spacer()
- if st.view_type in {'SEQUENCER', 'SEQUENCER_PREVIEW'}:
- layout.separator()
- layout.operator("sequencer.refresh_all", icon='FILE_REFRESH', text="")
-
if st.view_type in {'PREVIEW', 'SEQUENCER_PREVIEW'}:
layout.prop(st, "display_mode", text="", icon_only=True)
@@ -227,6 +223,10 @@ class SEQUENCER_MT_view(Menu):
layout.separator()
+ layout.operator("sequencer.refresh_all", icon='FILE_REFRESH', text="Refresh All")
+
+ layout.separator()
+
if is_preview:
layout.operator_context = 'INVOKE_REGION_PREVIEW'
layout.operator("sequencer.view_all_preview", text="Fit Preview in window")