From 2f9edda61c7725cca06483699f5b637d0fe61ff4 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Mardelle Date: Thu, 22 Oct 2020 21:08:19 +0200 Subject: [PATCH] Ensure timeline ruler is correctly updated on profile switch. Related to #819 --- src/core.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core.cpp b/src/core.cpp index b8ab69110..d05131fa6 100644 --- a/src/core.cpp +++ b/src/core.cpp @@ -344,6 +344,7 @@ bool Core::setCurrentProfile(const QString &profilePath) if (m_guiConstructed && m_mainWindow->getCurrentTimeline()->controller()->getModel()) { m_mainWindow->getCurrentTimeline()->controller()->getModel()->updateProfile(getProjectProfile()); checkProfileValidity(); + emit m_mainWindow->getCurrentTimeline()->controller()->frameFormatChanged(); } return true; } -- GitLab