From 7d96918246b866a0b4aac6b4dc70e4c049c0ada9 Mon Sep 17 00:00:00 2001 From: Samuel Fadel Date: Thu, 11 Feb 2016 16:12:21 -0200 Subject: RewindWorkerThread renamed to TransitionWorkerThread. Also, added easing curve customization. --- transitioncontrol.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'transitioncontrol.cpp') diff --git a/transitioncontrol.cpp b/transitioncontrol.cpp index bd85405..6d3f298 100644 --- a/transitioncontrol.cpp +++ b/transitioncontrol.cpp @@ -3,7 +3,7 @@ #include #include -#include "rewindworkerthread.h" +#include "transitionworkerthread.h" // The mouse button used for interaction static const Qt::MouseButton MOUSE_BUTTON = Qt::MiddleButton; @@ -60,7 +60,7 @@ void TransitionControl::mouseReleaseEvent(QMouseEvent *event) m_shouldRewind = false; // We now have to smoothly go back to m_t == 1.0 - m_rewindThread = new RewindWorkerThread(this); + m_rewindThread = new TransitionWorkerThread(this); connect(m_rewindThread, &QThread::finished, m_rewindThread, &QObject::deleteLater); m_rewindThread->start(); } -- cgit v1.2.3