]> git.sesse.net Git - kdenlive/blobdiff - src/abstractclipitem.cpp
- Fix drop frame timecode format. [1]
[kdenlive] / src / abstractclipitem.cpp
index 5cfcc36fb34aea469fc05560a0fff62ad9d6e18d..16c729e74be2a24753bfd0941954d2d1f387ddcd 100644 (file)
@@ -131,8 +131,8 @@ void AbstractClipItem::resizeStart(int posx, bool hasSizeLimit)
     //kDebug() << "-- RESCALE DIFF=" << durationDiff.frames(25) << ", CLIP: " << startPos().frames(25) << "-" << endPos().frames(25);
 
     if (type() == AVWIDGET) {
-       if (hasSizeLimit && cropStart() + durationDiff < GenTime())
-           durationDiff = GenTime() - cropStart();
+        if (hasSizeLimit && cropStart() + durationDiff < GenTime())
+            durationDiff = GenTime() - cropStart();
     } else if (durationDiff >= cropDuration()) {
         return;
         if (cropDuration() > GenTime(3, m_fps)) durationDiff = GenTime(3, m_fps);