Fix bug for the modification of the keyframe length.
authorCarlos Lopez <carlos@pcnuevo.(none)>
Wed, 22 Jul 2009 15:47:39 +0000 (17:47 +0200)
committerCarlos Lopez <carlos@pcnuevo.(none)>
Wed, 22 Jul 2009 15:47:39 +0000 (17:47 +0200)
Now, modify the keyframe length column, shifts the rest
of keyframes form the modified keyframe to the end of time.

synfig-studio/trunk/src/synfigapp/actions/keyframesetdelta.cpp

index 97898c3..6cd262a 100644 (file)
@@ -178,7 +178,10 @@ Action::KeyframeSetDelta::perform()
 
 //     Time location(keyframe.get_time());
        Time location(get_canvas()->keyframe_list().find(keyframe)->get_time());
-       Time delta(delta);
+//     This line sets delta to 0s regardless to any previous value of delta.
+//     I think it was here for symmetry to the undo() operation.
+//     It was causing that the Set delta operation was faulty. Now works!
+//     Time delta(delta);
 
        get_canvas()->keyframe_list().insert_time(location,delta);