← Back to team overview

openshot.code team mailing list archive

[Branch ~openshot.code/openshot/main] Rev 591: Applied a fix from Emil to prevent effects being applied to all sections of a clip that has been ...

 

------------------------------------------------------------
revno: 591
fixes bug: https://launchpad.net/bugs/852163
committer: Andy Finch <we.rocked.in79@xxxxxxxxx>
branch nick: openshot
timestamp: Tue 2011-10-18 21:24:35 +0100
message:
  Applied a fix from Emil to prevent effects being applied to all sections of a clip that has been split with the razor.
modified:
  openshot/classes/clip.py


--
lp:openshot
https://code.launchpad.net/~openshot.code/openshot/main

Your team OpenShot Code is subscribed to branch lp:openshot.
To unsubscribe from this branch go to https://code.launchpad.net/~openshot.code/openshot/main/+edit-subscription
=== modified file 'openshot/classes/clip.py'
--- openshot/classes/clip.py	2011-09-01 06:16:50 +0000
+++ openshot/classes/clip.py	2011-10-18 20:24:35 +0000
@@ -1923,6 +1923,7 @@
 		
 		#copy original effects
 		SecondClip.effects = self.effects
+		SecondClip.effects = copy.copy(self.effects)
 
 		# render new clip
 		SecondClip.RenderClip()