]> git.sesse.net Git - kdenlive/blobdiff - src/editguidecommand.cpp
indent fixes and give more info on capture failure
[kdenlive] / src / editguidecommand.cpp
index d614d407c0057355579231771383c1ee9fe7a52e..e1687d38a1af764612630fa3f0d9c87de49fd62b 100644 (file)
@@ -22,7 +22,7 @@
 EditGuideCommand::EditGuideCommand(CustomTrackView *view, const GenTime oldPos, const QString &oldcomment, const GenTime pos, const QString &comment, bool doIt) : m_view(view), m_oldPos(oldPos), m_oldcomment(oldcomment), m_pos(pos), m_comment(comment), m_doIt(doIt) {
     if (m_oldcomment.isEmpty()) setText(i18n("Add guide"));
     else if (m_oldPos == m_pos) setText(i18n("Edit guide"));
-       else if (m_pos <= GenTime()) setText(i18n("Delete guide"));
+    else if (m_pos <= GenTime()) setText(i18n("Delete guide"));
     else setText(i18n("Move guide"));
     kDebug() << "///  CREATE GUIDE COMMAND, TIMES: " << m_oldPos.frames(25) << "x" << m_pos.frames(25);
 }