]> git.sesse.net Git - kdenlive/blobdiff - src/resizeclipcommand.h
Several fixes for keyframes, fix bug in clip resize start undo and cleanup
[kdenlive] / src / resizeclipcommand.h
index 8493c95d3b954a20c7dce3f7765aa2556e68bd81..9b5a4ae6bbc164ae54a1eb59c5242419e1d5db23 100644 (file)
@@ -34,7 +34,7 @@ class CustomTrackView;
 class ResizeClipCommand : public QUndoCommand
 {
 public:
-    ResizeClipCommand(CustomTrackView *view, const ItemInfo start, const ItemInfo end, bool doIt, QUndoCommand * parent = 0);
+    ResizeClipCommand(CustomTrackView *view, const ItemInfo start, const ItemInfo end, bool doIt, bool dontWorry, QUndoCommand * parent = 0);
     virtual void undo();
     virtual void redo();
 
@@ -43,6 +43,7 @@ private:
     ItemInfo m_startPos;
     ItemInfo m_endPos;
     bool m_doIt;
+    bool m_dontWorry;
 };
 
 #endif