[Bf-blender-cvs] [a083ddf49b9] master: Sequencer: correct fcurve map usage

Campbell Barton noreply at git.blender.org
Mon Sep 23 01:56:59 CEST 2019


Commit: a083ddf49b9f4415ce9a4b5d6f4605deec3d38c8
Author: Campbell Barton
Date:   Mon Sep 23 09:31:08 2019 +1000
Branches: master
https://developer.blender.org/rBa083ddf49b9f4415ce9a4b5d6f4605deec3d38c8

Sequencer: correct fcurve map usage

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

M	release/scripts/startup/bl_operators/sequencer.py

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

diff --git a/release/scripts/startup/bl_operators/sequencer.py b/release/scripts/startup/bl_operators/sequencer.py
index 73a513829d8..78c1e3b2d8e 100644
--- a/release/scripts/startup/bl_operators/sequencer.py
+++ b/release/scripts/startup/bl_operators/sequencer.py
@@ -148,15 +148,14 @@ class SequencerFadesClear(Operator):
 
     def execute(self, context):
         fcurves = context.scene.animation_data.action.fcurves
-
+        fcurve_map = {
+            curve.data_path: curve
+            for curve in fcurves
+            if curve.data_path.startswith("sequence_editor.sequences_all")
+        }
         for sequence in context.selected_sequences:
             animated_property = "volume" if hasattr(sequence, "volume") else "blend_alpha"
             data_path = sequence.path_from_id() + "." + animated_property
-            fcurve_map = {
-                curve.data_path: curve
-                for curve in fcurves
-                if curve.data_path.startswith("sequence_editor.sequences_all")
-            }
             curve = fcurve_map.get(data_path)
             if curve:
                 fcurves.remove(curve)



More information about the Bf-blender-cvs mailing list