]> git.sesse.net Git - kdenlive/blobdiff - src/clipdurationdialog.cpp
Image sequences can now start at an arbitrary frame, just select the first one in...
[kdenlive] / src / clipdurationdialog.cpp
index 920ca288e522d709fc35e3bc3ffeaaf176a09172..a9fbb934af4bc0228d55598b2cb703e2dcf6e76c 100644 (file)
@@ -23,6 +23,7 @@
 
 #include <KDebug>
 #include <KMessageBox>
+#include <KGlobalSettings>
 
 #include <QWheelEvent>
 
@@ -36,13 +37,13 @@ ClipDurationDialog::ClipDurationDialog(AbstractClipItem *clip, Timecode tc, GenT
     setupUi(this);
 
     m_pos = new TimecodeDisplay(tc);
-    m_dur = new TimecodeDisplay(tc);
     m_cropStart = new TimecodeDisplay(tc);
+    m_dur = new TimecodeDisplay(tc);
     m_cropEnd = new TimecodeDisplay(tc);
     
     clip_position_box->addWidget(m_pos);
+    crop_start_box->addWidget(m_cropStart);
     clip_duration_box->addWidget(m_dur);
-    crop_start_box->addWidget(m_cropStart),
     crop_end_box->addWidget(m_cropEnd);
 
     bool allowCrop = true;