Expose viewer panels also when backdrop is active. Allows to select

proxy size, render type etc.
This commit is contained in:
Antonis Ryakiotakis 2015-01-06 12:17:06 +01:00
parent a922be9270
commit 4b586895f2
1 changed files with 2 additions and 1 deletions

View File

@ -446,7 +446,8 @@ class SequencerButtonsPanel_Output():
@staticmethod
def has_preview(context):
return (context.space_data.view_type in {'PREVIEW', 'SEQUENCER_PREVIEW'})
st = context.space_data
return (st.view_type in {'PREVIEW', 'SEQUENCER_PREVIEW'}) or st.show_backdrop
@classmethod
def poll(cls, context):