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/main_window.cc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/main_window.cc') diff --git a/src/main_window.cc b/src/main_window.cc index 8acfefb..7bc7855 100644 --- a/src/main_window.cc +++ b/src/main_window.cc @@ -53,16 +53,19 @@ void MainWindow::open(const QString &path) { QByteArray data = file.readAll(); QJsonDocument json_doc = QJsonDocument::fromJson(data); if (dc) delete dc; + glw.meshes.clear(); dc = new DroneController(json_doc.object()); playpause_action->setEnabled(true); connect(dc, &DroneController::playing, this, &MainWindow::play); connect(dc, &DroneController::pausing, this, &MainWindow::pause); slider->setMinimum(0); slider->setMaximum(dc->getDuration()); + slider->setValue(0); connect(slider, &QSlider::sliderPressed, dc, &DroneController::suspend); connect(slider, &QSlider::sliderReleased, dc, &DroneController::resume); connect(slider, &QSlider::valueChanged, dc, &DroneController::seek); connect(dc, &DroneController::frameChanged, slider, &QSlider::setValue); + pause(); slider->setEnabled(true); } -- cgit v1.2.3-70-g09d2