]> git.sesse.net Git - kdenlive/blobdiff - src/clipproperties.cpp
Change clip speed (slowmotion) - not finished yet, saving does not work
[kdenlive] / src / clipproperties.cpp
index 784f0e2ea431f41d8d179cd4778123355646cfff..1111277e1ca9dd051529ebef9025ef3046c1dc04 100644 (file)
@@ -100,16 +100,16 @@ ClipProperties::ClipProperties(DocClipBase *clip, Timecode tc, double fps, QWidg
         profilePath += "/lumas/PAL/";
 
         QDir dir(profilePath);
-       QStringList filter;
-       filter << "*.pgm";
+        QStringList filter;
+        filter << "*.pgm";
         const QStringList result = dir.entryList(filter, QDir::Files);
         QStringList imagefiles;
         QStringList imagenamelist;
         int current;
         foreach(const QString file, result) {
-                m_view.luma_file->addItem(KIcon(profilePath + file), file, profilePath + file);
-                if (!lumaFile.isEmpty() && lumaFile == QString(profilePath + file))
-                    current = m_view.luma_file->count() - 1;
+            m_view.luma_file->addItem(KIcon(profilePath + file), file, profilePath + file);
+            if (!lumaFile.isEmpty() && lumaFile == QString(profilePath + file))
+                current = m_view.luma_file->count() - 1;
         }
 
         if (!lumaFile.isEmpty()) {