]> git.sesse.net Git - kdenlive/blobdiff - src/projectlist.cpp
Change clip speed (slowmotion) - not finished yet, saving does not work
[kdenlive] / src / projectlist.cpp
index e9327b4471e6df4d0dfb203b4867c32061aea415..b8f9c76d6f3807f78b00ed8f1a126bdd28e729b0 100644 (file)
@@ -325,8 +325,8 @@ void ProjectList::slotAddClip(QUrl givenUrl, QString group) {
         }
     }
     foreach(const KUrl file, list) {
-       if (KIO::NetAccess::exists(file, KIO::NetAccess::SourceSide, NULL))
-           m_doc->slotAddClipFile(file, group, groupId);
+        if (KIO::NetAccess::exists(file, KIO::NetAccess::SourceSide, NULL))
+            m_doc->slotAddClipFile(file, group, groupId);
     }
 }
 
@@ -334,8 +334,8 @@ void ProjectList::slotRemoveInvalidClip(int id) {
     ProjectItem *item = getItemById(id);
     if (item) {
         QString path = item->referencedClip()->fileURL().path();
-       if (!path.isEmpty()) KMessageBox::sorry(this, i18n("<qt>Clip <b>%1</b><br>is invalid, will be removed from project.", path));
-       
+        if (!path.isEmpty()) KMessageBox::sorry(this, i18n("<qt>Clip <b>%1</b><br>is invalid, will be removed from project.", path));
+
     }
     QList <int> ids;
     ids << id;