[Bf-blender-cvs] [d17cb3a3b3b] master: Fix Python error in sequencer scene strip UI

Brecht Van Lommel noreply at git.blender.org
Mon May 20 18:10:40 CEST 2019


Commit: d17cb3a3b3b38ed85ebd29df4af1bd277d60e99f
Author: Brecht Van Lommel
Date:   Mon May 20 18:08:18 2019 +0200
Branches: master
https://developer.blender.org/rBd17cb3a3b3b38ed85ebd29df4af1bd277d60e99f

Fix Python error in sequencer scene strip UI

===================================================================

M	release/scripts/startup/bl_ui/space_sequencer.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index b0d2a6cfcb5..fbd49cb7640 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -1189,7 +1189,7 @@ class SEQUENCER_PT_scene(SequencerButtonsPanel, Panel):
                 # Warning, this is not a good convention to follow.
                 # Expose here because setting the alpha from the 'Render' menu is very inconvenient.
                 # layout.label(text="Preview")
-                layout.prop(scene.render, "alpha_mode")
+                layout.prop(scene.render, "film_transparent")
 
 
 class SEQUENCER_PT_mask(SequencerButtonsPanel, Panel):



More information about the Bf-blender-cvs mailing list