[Bf-extensions-cvs] [3537c4a] master: Fix T44712: broken "copy strip properties".

Bastien Montagne noreply at git.blender.org
Fri May 15 12:15:25 CEST 2015


Commit: 3537c4ac7db88ecfe1c307268cd4eb0548ad32e2
Author: Bastien Montagne
Date:   Fri May 15 12:12:16 2015 +0200
Branches: master
https://developer.blender.org/rBAC3537c4ac7db88ecfe1c307268cd4eb0548ad32e2

Fix T44712: broken "copy strip properties".

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

M	sequencer_extra_actions/operators_extra_actions.py

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

diff --git a/sequencer_extra_actions/operators_extra_actions.py b/sequencer_extra_actions/operators_extra_actions.py
index 199daff..8e95869 100644
--- a/sequencer_extra_actions/operators_extra_actions.py
+++ b/sequencer_extra_actions/operators_extra_actions.py
@@ -976,8 +976,8 @@ class Sequencer_Extra_CopyProperties(bpy.types.Operator):
         strip = functions.act_strip(context)
         selectedstrips = context.selected_editable_sequences
 
-        for i in seq.sequences:
-            if (i.select == True and not i.mute):
+        for i in selectedstrips:
+            if not i.mute:
                 try:
                     if self.prop == 'name':
                         i.name = strip.name



More information about the Bf-extensions-cvs mailing list