X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fsynfig%2Fsavecanvas.cpp;h=8988a50d88c9ddecd388e23c41a4f69970bafe9b;hb=7784a3bee6fcd88caea8b5a5a2bd9c0853955bb3;hp=18224dfc5e04cf2bfbf12a49ab280119b8808079;hpb=0f9ceff3703a03265112e8bcfb2b31d959aa99d6;p=synfig.git diff --git a/synfig-core/trunk/src/synfig/savecanvas.cpp b/synfig-core/trunk/src/synfig/savecanvas.cpp index 18224df..8988a50 100644 --- a/synfig-core/trunk/src/synfig/savecanvas.cpp +++ b/synfig-core/trunk/src/synfig/savecanvas.cpp @@ -57,6 +57,10 @@ #include "gradient.h" #include +extern "C" { +#include +} + #endif /* === U S I N G =========================================================== */ @@ -300,7 +304,7 @@ xmlpp::Element* encode_animated(xmlpp::Element* root,ValueNode_Animated::ConstHa case INTERPOLATION_TCB: // This is the default value, so don't add a new attribute (unless it's an angle - they default to linear) if (value_node->get_type() == ValueBase::TYPE_ANGLE) - waypoint_node->set_attribute("before","tcb"); + waypoint_node->set_attribute("before","auto"); break; default: error("Unknown waypoint type for \"before\" attribute"); @@ -325,7 +329,7 @@ xmlpp::Element* encode_animated(xmlpp::Element* root,ValueNode_Animated::ConstHa case INTERPOLATION_TCB: // This is the default value, so don't add a new attribute (unless it's an angle - they default to linear) if (value_node->get_type() == ValueBase::TYPE_ANGLE) - waypoint_node->set_attribute("after","tcb"); + waypoint_node->set_attribute("after","auto"); break; default: error("Unknown waypoint type for \"after\" attribute"); @@ -747,6 +751,11 @@ synfig::save_canvas(const String &filename, Canvas::ConstHandle canvas) synfig::String tmp_filename(filename+".TMP"); + if (String(filename.begin() + filename.find_last_of('.')+1, filename.end()) == "sifz") + xmlSetCompressMode(9); + else + xmlSetCompressMode(0); + try { assert(canvas);