]> git.sesse.net Git - kdenlive/blobdiff - src/projectlistview.cpp
Try to fix audio mixing bug ( http://www.kdenlive.org:80/mantis/view.php?id=228 )
[kdenlive] / src / projectlistview.cpp
index b424ebef1de1f43fb72e41ca7887e77479620c53..d7de11cce011aa95489109d525a23744ae22554f 100644 (file)
@@ -114,7 +114,10 @@ void ProjectListView::mouseDoubleClickEvent(QMouseEvent * event) {
     if (!item) emit addClip();
     else if (item->isGroup()) {
         if ((columnAt(event->pos().x()) == 1)) QTreeWidget::mouseDoubleClickEvent(event);
-    } else emit showProperties(item->referencedClip());
+    } else {
+        if ((columnAt(event->pos().x()) == 2)) QTreeWidget::mouseDoubleClickEvent(event);
+        else emit showProperties(item->referencedClip());
+    }
 }
 
 // virtual