]> git.sesse.net Git - kdenlive/commitdiff
Fix one crash when using dvd wizard:
authorJean-Baptiste Mardelle <jb@kdenlive.org>
Sat, 26 Sep 2009 13:00:25 +0000 (13:00 +0000)
committerJean-Baptiste Mardelle <jb@kdenlive.org>
Sat, 26 Sep 2009 13:00:25 +0000 (13:00 +0000)
http://www.kdenlive.org/mantis/view.php?id=1164

svn path=/trunk/kdenlive/; revision=3934

src/mainwindow.cpp

index 6e7fcf84fb1464c413834f409a51d42029cf136f..01585755ca12b576b2b862e4df0bee698a9186bd 100644 (file)
@@ -2667,8 +2667,12 @@ void MainWindow::slotUpdateClipType(QAction *action)
 
 void MainWindow::slotDvdWizard(const QString &url, const QString &profile)
 {
+    // We must stop the monitors since we create a new on in the dvd wizard
+    m_clipMonitor->stop();
+    m_projectMonitor->stop();
     DvdWizard w(url, profile, this);
     w.exec();
+    m_projectMonitor->start();
 }
 
 void MainWindow::slotShowTimeline(bool show)