UI: Sequencer: add refresh_all operator to all sequencer view menus

This commit piggybacks on rB3e695a27cdfad560d0b28e742cfa069d098200d6
This commit is contained in:
Aaron Carlisle 2021-06-18 16:02:46 -04:00
parent 4947aa29db
commit d086570c7a
1 changed files with 5 additions and 6 deletions

View File

@ -392,6 +392,11 @@ class SEQUENCER_MT_view(Menu):
layout.menu("SEQUENCER_MT_proxy")
layout.operator_context = 'INVOKE_DEFAULT'
layout.separator()
layout.operator_context = 'INVOKE_REGION_WIN'
layout.operator("sequencer.refresh_all", icon='FILE_REFRESH', text="Refresh All")
layout.operator_context = 'INVOKE_DEFAULT'
if is_sequencer_view:
layout.separator()
@ -401,12 +406,6 @@ class SEQUENCER_MT_view(Menu):
layout.menu("SEQUENCER_MT_range")
layout.separator()
layout.operator_context = 'INVOKE_REGION_WIN'
layout.operator("sequencer.refresh_all", icon='FILE_REFRESH', text="Refresh All")
layout.separator()
layout.operator_context = 'INVOKE_DEFAULT'
layout.prop(st, "show_locked_time")
layout.separator()