X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmonitormanager.cpp;h=1b0a7c6fb278400d20a2867947a0648408ea4681;hb=cbc47b258bd6782788a8dcff14b9cbdad334ecf8;hp=8d0d2341b83929e018a35c8de7f50efd1cd09201;hpb=8b94a43aef0a8b33b4954cd7fb44d256d10fbae9;p=kdenlive diff --git a/src/monitormanager.cpp b/src/monitormanager.cpp index 8d0d2341..1b0a7c6f 100644 --- a/src/monitormanager.cpp +++ b/src/monitormanager.cpp @@ -187,16 +187,8 @@ void MonitorManager::slotResetProfiles() if (m_projectMonitor == NULL || m_clipMonitor == NULL) return; blockSignals(true); QString active = m_activeMonitor ? m_activeMonitor->name() : QString(); - if (!m_clipMonitor->render->hasProfile(KdenliveSettings::current_profile())) { - activateMonitor("clip"); - m_clipMonitor->resetProfile(KdenliveSettings::current_profile()); - m_clipMonitor->updateTimecodeFormat(); - } - if (!m_projectMonitor->render->hasProfile(KdenliveSettings::current_profile())) { - activateMonitor("project"); - m_projectMonitor->resetProfile(KdenliveSettings::current_profile()); - m_projectMonitor->updateTimecodeFormat(); - } + m_clipMonitor->resetProfile(KdenliveSettings::current_profile()); + m_projectMonitor->resetProfile(KdenliveSettings::current_profile()); if (!active.isEmpty()) activateMonitor(active); blockSignals(false); if (m_activeMonitor) m_activeMonitor->parentWidget()->raise();