]> git.sesse.net Git - kdenlive/blobdiff - src/abstractclipitem.cpp
Get rid of most of the place consuming tooltips. Most of their content is now visible...
[kdenlive] / src / abstractclipitem.cpp
index 079a58128d38d9b7435691f54ed82d89112ada05..8fb767be27c83b8fa7548537e5776f389a10c172 100644 (file)
@@ -130,7 +130,6 @@ void AbstractClipItem::resizeStart(int posx, bool hasSizeLimit)
 {
     GenTime durationDiff = GenTime(posx, m_fps) - m_info.startPos;
     if (durationDiff == GenTime()) return;
-    //kDebug() << "-- RESCALE DIFF=" << durationDiff.frames(25) << ", CLIP: " << startPos().frames(25) << "-" << endPos().frames(25);
 
     if (type() == AVWIDGET && hasSizeLimit && (cropStart() + durationDiff < GenTime())) {
         durationDiff = GenTime() - cropStart();