Fix a bug causing PasteCanvas layer to adjust its waypoints in the wrong direction...
[synfig.git] / synfig-core / trunk / src / synfig / layer_pastecanvas.cpp
index 026a113..f8308a7 100644 (file)
@@ -417,9 +417,7 @@ void Layer_PasteCanvas::get_times_vfunc(Node::time_set &set) const
        //TODO: SOMETHING STILL HAS TO BE DONE WITH THE OTHER DIRECTION
        //              (recursing down the tree needs to take this into account too...)
        for(; i != end; ++i)
-       {
-               set.insert(*i + time_offset);
-       }
+               set.insert(*i - time_offset);
 
        Layer::get_times_vfunc(set);
 }