]> git.sesse.net Git - kdenlive/blobdiff - src/projectitem.cpp
Show proxy status in tooltip, and graphical thumbnail overlay
[kdenlive] / src / projectitem.cpp
index 4767f705231dd98c8b8a0b83d15c0e3d7dbe0d10..8d280912085e0c2fc007d827031942fb1e3baf2a 100644 (file)
@@ -167,9 +167,13 @@ void ProjectItem::slotSetToolTip()
 {
     QString tip;
     if (m_clip->isPlaceHolder()) tip.append(i18n("Missing") + " | ");
-    if (isProxyRunning()) {
+    int s = data(0, ProxyRole).toInt();
+    if (s == CREATINGPROXY || s > 0) {
         tip.append(i18n("Building proxy clip") + " | ");
     }
+    else if (s == PROXYWAITING) {
+        tip.append(i18n("Waiting - proxy clip") + " | ");
+    }
     else if (hasProxy()) {
         tip.append(i18n("Proxy clip") + " | ");
     }