=== modified file 'openshot/classes/clip.py' --- openshot/classes/clip.py 2011-04-18 16:56:05 +0000 +++ openshot/classes/clip.py 2011-08-01 23:02:56 +0000 @@ -16,7 +16,7 @@ # You should have received a copy of the GNU General Public License # along with OpenShot Video Editor. If not, see . -import effect +import effect, copy import os, locale, uuid import xml.dom.minidom as xml import gtk, goocanvas @@ -1805,7 +1805,7 @@ SecondClip.video_fade_amount = self.video_fade_amount # copy original properties - SecondClip.keyframes = self.keyframes + SecondClip.keyframes = copy.deepcopy(self.keyframes) # render new clip SecondClip.RenderClip()