]> git.sesse.net Git - kdenlive/blobdiff - src/wizard.cpp
Fix regression introduced by document validation changes (document profile was not...
[kdenlive] / src / wizard.cpp
index 9e10697350b999dbffbb5ecccbddf4ed948d363f..ea928ecc365c937a9a0d3ea006cbf80cb070d6cb 100644 (file)
@@ -36,6 +36,7 @@ const double recommendedMltVersion = 40;
 Wizard::Wizard(bool upgrade, QWidget *parent) :
         QWizard(parent)
 {
+    setWindowTitle(i18n("Config Wizard"));
     setPixmap(QWizard::WatermarkPixmap, QPixmap(KStandardDirs::locate("appdata", "banner.png")));
 
     QWizardPage *page1 = new QWizardPage;
@@ -194,7 +195,7 @@ void Wizard::checkMltComponents()
                     mltVersion = mltVersion.section(' ', -1).simplified();
                     version = 100 * mltVersion.section('.', 0, 0).toInt() + 10 * mltVersion.section('.', 1, 1).toInt() + mltVersion.section('.', 2, 2).toInt();
                     kDebug() << "// FOUND MLT version: " << version;
-                    if (version > 34) recentMlt = true;
+                    if (version >= 40) recentMlt = true;
                 }
             }
 
@@ -499,7 +500,7 @@ void Wizard::slotCheckMlt()
 {
     QString errorMessage;
     if (KdenliveSettings::rendererpath().isEmpty()) {
-        errorMessage.append(i18n("your MLT installation cannot be found. Install MLT and restart Kdenlive.\n"));
+        errorMessage.append(i18n("Your MLT installation cannot be found. Install MLT and restart Kdenlive.\n"));
     }
     /*QProcess checkProcess;
     checkProcess.start(KdenliveSettings::rendererpath(), QStringList() << "-query" << "producer");