From c6ca25b110ebf83d7981a76a6433a60ee4ae89d0 Mon Sep 17 00:00:00 2001 From: ccolin Date: Tue, 22 Dec 2020 17:57:45 +0100 Subject: fix inconsistencies when loading a file if another is already loaded --- src/drone_controller.cc | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/drone_controller.cc') diff --git a/src/drone_controller.cc b/src/drone_controller.cc index 0a69fd1..406a031 100644 --- a/src/drone_controller.cc +++ b/src/drone_controller.cc @@ -126,7 +126,6 @@ DroneController::DroneController(const QJsonObject &json) } connect(&timer, &QTimer::timeout, this, &DroneController::step); - pause(); } @@ -136,7 +135,6 @@ int DroneController::getDuration() const { void DroneController::step() { - // qDebug("frame %d (%d%%)", frame, (int) ((double) frame / duration * 100)); for (Drone d : drones) { d.setTo(frame); } @@ -154,7 +152,6 @@ void DroneController::play() { if (!paused) return; paused = false; timer.start(1000. / framerate); - qDebug() << "playing"; emit playing(); } @@ -163,7 +160,6 @@ void DroneController::pause() { if (paused) return; paused = true; timer.stop(); - qDebug() << "pausing"; emit pausing(); } -- cgit v1.2.3-70-g09d2