[Bf-blender-cvs] [962e481f262] temp-nla-strip-alignment: - fix preblend transform deletion. By this point, we can actually test the alignment feature

Wayde Moss noreply at git.blender.org
Thu Dec 10 06:13:38 CET 2020


Commit: 962e481f26255e5c002396bdbe1b34e088a87fc4
Author: Wayde Moss
Date:   Sat Nov 28 01:32:29 2020 -0500
Branches: temp-nla-strip-alignment
https://developer.blender.org/rB962e481f26255e5c002396bdbe1b34e088a87fc4

- fix preblend transform deletion. By this point, we can actually test the alignment feature

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

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

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

diff --git a/release/scripts/startup/bl_ui/properties_nla.py b/release/scripts/startup/bl_ui/properties_nla.py
index e8fafb51722..d29caa2b7e0 100644
--- a/release/scripts/startup/bl_ui/properties_nla.py
+++ b/release/scripts/startup/bl_ui/properties_nla.py
@@ -64,7 +64,7 @@ class OBJECT_OT_nla_remove_preblend(bpy.types.Operator):
 
     def execute(self, context):
         active_strip = get_active_strip(context)
-        active_strip.preblend_transforms.remove_at(self.preblend_index)
+        active_strip.preblend_transforms.remove_at(preblend_index=self.preblend_index)
 
         return {'FINISHED'}



More information about the Bf-blender-cvs mailing list