]> git.sesse.net Git - kdenlive/blobdiff - src/monitormanager.cpp
* Fix several transition move problems
[kdenlive] / src / monitormanager.cpp
index a0ed893a012e1d6f92433d3b9cfd993f8221c37b..8788f385f335f8e3adb595aae1fc92966c712410 100644 (file)
@@ -77,6 +77,16 @@ void MonitorManager::slotPlay() {
     else m_projectMonitor->slotPlay();
 }
 
+void MonitorManager::slotPlayZone() {
+    if (m_clipMonitor->isActive()) m_clipMonitor->slotPlayZone();
+    else m_projectMonitor->slotPlayZone();
+}
+
+void MonitorManager::slotLoopZone() {
+    if (m_clipMonitor->isActive()) m_clipMonitor->slotLoopZone();
+    else m_projectMonitor->slotLoopZone();
+}
+
 void MonitorManager::slotRewind(double speed) {
     if (m_clipMonitor->isActive()) m_clipMonitor->slotRewind(speed);
     else m_projectMonitor->slotRewind(speed);