]> git.sesse.net Git - kdenlive/commitdiff
Remove percentage sign from keyframe tooltip (wrong in most cases).
authorTill Theato <root@ttill.de>
Sun, 24 Oct 2010 11:01:23 +0000 (11:01 +0000)
committerTill Theato <root@ttill.de>
Sun, 24 Oct 2010 11:01:23 +0000 (11:01 +0000)
svn path=/trunk/kdenlive/; revision=5040

src/abstractclipitem.cpp

index 09d837a1b88e9ead91bf37d4631686917008ad17..c6f879fd7ebf1eef7868bb941e11a30ae9919a79 100644 (file)
@@ -324,7 +324,7 @@ int AbstractClipItem::mouseOverKeyFrames(QPointF pos, double maxOffset)
             x1 = br.x() + maxw * (i.key() - cropStart().frames(m_fps));
             y1 = br.bottom() - i.value() * maxh;
             if (qAbs(pos.x() - x1) < maxOffset && qAbs(pos.y() - y1) < 10) {
-                setToolTip('[' + QString::number((GenTime(i.key(), m_fps) - cropStart()).seconds(), 'f', 2) + i18n("seconds") + ", " + QString::number(i.value(), 'f', 1) + "%]");
+                setToolTip('[' + QString::number((GenTime(i.key(), m_fps) - cropStart()).seconds(), 'f', 2) + i18n("seconds") + ", " + QString::number(i.value(), 'f', 1) + "]");
                 return i.key();
             } else if (x1 > pos.x()) {
                 break;