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:
authorRichard Antalik <richardantalik@gmail.com>2021-01-25 06:42:46 +0300
committerRichard Antalik <richardantalik@gmail.com>2021-01-25 06:42:46 +0300
commit744fa41e7ef3a16c3efa46e07183b66f1590584d (patch)
tree60ddbb179b1ef41b662ccfb470cccf6784f34cdc /release
parent652dd4e27fb84913e2c080bafa6c9afcc9057da5 (diff)
Fix T83266: Proxy building with meta strips fails
Building proxy with meta strip selected resulted in attempt to render meta strip itself and save result as image as is done when building image proxies. Remove meta strip from list of supported strips. Multicam, Meta and scene strip are cleared from poll function in UI as well. Reviewed By: sergey Differential Revision: https://developer.blender.org/D10001
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index 5034f2efa31..79f88b1b67d 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -1942,7 +1942,7 @@ class SEQUENCER_PT_strip_proxy(SequencerButtonsPanel, Panel):
if not strip:
return False
- return strip.type in {'MOVIE', 'IMAGE', 'SCENE', 'META', 'MULTICAM'}
+ return strip.type in {'MOVIE', 'IMAGE'}
def draw_header(self, context):
strip = act_strip(context)