]> git.sesse.net Git - kdenlive/blobdiff - src/projectlist.cpp
fix BUG#3186 : lock missing on enable effect
[kdenlive] / src / projectlist.cpp
index 04150d1e2fa094536da118b15856cd6f5840fe39..ddf1a8421e932c83f2a11d52cb34fe84030f3708 100644 (file)
@@ -974,13 +974,13 @@ void ProjectList::slotUpdateClipProperties(ProjectItem *clip, QMap <QString, QSt
         monitorItemEditing(false);
         clip->setText(1, properties.value("description"));
         monitorItemEditing(true);
-//#ifdef USE_NEPOMUK
-        if (KdenliveSettings::activate_nepomuk() && (type == Audio || type == Video || type == AV || type == Image || type == PLAYLIST)) {
+#ifdef USE_NEPOMUK
+        if (KdenliveSettings::activate_nepomuk() && (type == Audio || type == Video || type == AV || type == Image || type == Playlist)) {
             // Use Nepomuk system to store clip description
             Nepomuk::Resource f(clip->clipUrl().path());
             f.setDescription(properties.value("description"));
         }
-//#endif
+#endif
         emit projectModified();
     }
 }