]> git.sesse.net Git - kdenlive/blobdiff - src/clipitem.cpp
- Fix drop frame timecode format. [1]
[kdenlive] / src / clipitem.cpp
index 39df20878d6c91fe8abe2427999786cd678dcc1e..b2de6e57a86edb7078f145cfaf907e3ef83ba812 100644 (file)
@@ -1154,9 +1154,9 @@ void ClipItem::resizeStart(int posx, bool)
 {
     bool sizeLimit = false;
     if (clipType() != IMAGE && clipType() != COLOR && clipType() != TEXT) {
-       const int min = (startPos() - cropStart()).frames(m_fps);
-       if (posx < min) posx = min;
-       sizeLimit = true;
+        const int min = (startPos() - cropStart()).frames(m_fps);
+        if (posx < min) posx = min;
+        sizeLimit = true;
     }
 
     if (posx == startPos().frames(m_fps)) return;