https://bugs.kde.org/show_bug.cgi?id=405564

--- Comment #15 from Rex Dieter <rdie...@gmail.com> ---
FYI, the code in question is in mltconnection.cpp where it hard-codes looking
for "mlt" only:

    QString meltPath;
    if (qEnvironmentVariableIsSet("MLT_PREFIX"))
        meltPath = qgetenv("MLT_PREFIX") + QStringLiteral("/bin/melt") +
exeSuffix;
    if (!QFile::exists(meltPath)) {
        meltPath = QDir::cleanPath(profilePath +
QStringLiteral("/../../../bin/melt")) + exeSuffix;
    }
    if (!QFile::exists(meltPath)) {
        meltPath = QStandardPaths::findExecutable("melt");
    }
    KdenliveSettings::setRendererpath(meltPath);

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to