]> git.sesse.net Git - kdenlive/blobdiff - src/projectitem.cpp
Fix template title clips & some other title issues
[kdenlive] / src / projectitem.cpp
index 7b3a335efde2394c2617a415c3ef522ee136cc9e..d9238ad9d4ad39a0c7e7abc290cfd550fa3eadbd 100644 (file)
@@ -200,7 +200,8 @@ void ProjectItem::slotSetToolTip()
         tip.append(i18n("Image clip") + "</b><br />" + clipUrl().path());
         break;
     case TEXT:
-        tip.append(i18n("Text clip") + "</b><br />" + clipUrl().path());
+        if (!clipUrl().isEmpty() && m_clip->getProperty("xmldata").isEmpty()) tip.append(i18n("Template text clip") + "</b><br />" + clipUrl().path());
+        else tip.append(i18n("Text clip") + "</b><br />" + clipUrl().path());
         break;
     case SLIDESHOW:
         tip.append(i18n("Slideshow clip") + "</b><br />" + clipUrl().directory());