]> git.sesse.net Git - kdenlive/blobdiff - src/customtrackview.cpp
Ask to change profile if first clip does not match project profile:
[kdenlive] / src / customtrackview.cpp
index eaa996efbb9692c74b2792a39bdf4dd5562dbad9..429ce27297751df61c296a5711d5485ad2772a05 100644 (file)
@@ -6392,8 +6392,8 @@ EffectsParameterList CustomTrackView::getEffectArgs(const QDomElement effect)
             QStringList values = e.attribute("keyframes").split(";", QString::SkipEmptyParts);
             double factor = e.attribute("factor", "1").toDouble();
             for (int j = 0; j < values.count(); j++) {
-                QString pos = values.at(j).section(":", 0, 0);
-                double val = values.at(j).section(":", 1, 1).toDouble() / factor;
+                QString pos = values.at(j).section(':', 0, 0);
+                double val = values.at(j).section(':', 1, 1).toDouble() / factor;
                 values[j] = pos + "=" + QString::number(val);
             }
             // kDebug() << "/ / / /SENDING KEYFR:" << values;