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-05-16 15:38:44 +0300
committerWilliam Reynish <billrey@me.com>2019-05-16 15:38:44 +0300
commit960496f8d181def9ac5e18e430893fde89d06a05 (patch)
treee0d42c4f1d4d5cbb1c987b01f48e39ea20ab5c1d /release
parente60890075b37097287f561c1b681685a21dcd4fe (diff)
UI: Tweak naming in Sequencer View menu to match 3D View
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 d380ad89d3a..3dfb0b881e2 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -206,15 +206,15 @@ class SEQUENCER_MT_view(Menu):
layout.operator_context = 'INVOKE_DEFAULT'
if st.view_type == 'SEQUENCER':
- layout.prop(st, "show_backdrop", text="Backdrop")
+ layout.prop(st, "show_backdrop", text="Preview as Backdrop")
layout.separator()
if is_sequencer_view:
layout.operator_context = 'INVOKE_REGION_WIN'
- layout.operator("sequencer.view_all", text="View all Sequences")
- layout.operator("sequencer.view_selected")
- layout.operator("sequencer.view_frame")
+ layout.operator("sequencer.view_all", text="Frame All")
+ layout.operator("sequencer.view_selected", text="Frame Selected")
+ layout.operator("sequencer.view_frame", text="Go to Playhead")
layout.operator_context = 'INVOKE_DEFAULT'
if is_preview:
layout.operator_context = 'INVOKE_REGION_PREVIEW'