]> git.sesse.net Git - kdenlive/blobdiff - src/customtrackscene.h
Rewrote correct implementation of vertical timeline zoom
[kdenlive] / src / customtrackscene.h
index 822a0676f5ee9d177618b832fd4882a9f54b555a..eb22ec90c6e3e435f3c788ab3c657795069a880f 100644 (file)
@@ -42,15 +42,15 @@ public:
     GenTime previousSnapPoint(GenTime pos);
     GenTime nextSnapPoint(GenTime pos);
     double getSnapPointForPos(double pos, bool doSnap = true);
-    void setScale(double scale);
-    double scale() const;
+    void setScale(double scale, double vscale);
+    QPointF scale() const;
     int tracksCount() const;
     QPixmap m_transitionPixmap;
 
 private:
     KdenliveDoc *m_document;
     QList <GenTime> m_snapPoints;
-    double m_scale;
+    QPointF m_scale;
 };
 
 #endif