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:
authorWayde Moss <wbmoss_dev@yahoo.com>2020-11-28 09:32:29 +0300
committerWayde Moss <wbmoss_dev@yahoo.com>2020-12-10 07:17:00 +0300
commit962e481f26255e5c002396bdbe1b34e088a87fc4 (patch)
treeb22a08bdcf57f9c58cd242ae26b19019af22e705
parentd9280548ffd27a8baaa213012d4dbd8eefa5e423 (diff)
- fix preblend transform deletion. By this point, we can actually test the alignment feature
-rw-r--r--release/scripts/startup/bl_ui/properties_nla.py2
1 files changed, 1 insertions, 1 deletions
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'}