From db14a264e7db1db61ebc709d80ac1ee0b2b5bf6b Mon Sep 17 00:00:00 2001 From: Leonardo Zide Date: Sun, 15 Mar 2026 20:35:48 -0700 Subject: [PATCH] Fixed timeline selection updates. --- common/lc_model.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/lc_model.cpp b/common/lc_model.cpp index 93b52159..d56fb59f 100644 --- a/common/lc_model.cpp +++ b/common/lc_model.cpp @@ -1985,6 +1985,7 @@ void lcModel::EndHistorySequence(const QString& Description) gMainWindow->UpdateModified(IsModified()); gMainWindow->UpdateUndoRedo(!mUndoHistory.empty() ? mUndoHistory.front()->Description : nullptr, !mRedoHistory.empty() ? mRedoHistory.front()->Description : nullptr); + gMainWindow->UpdateTimeline(true, false); for (const std::unique_ptr& ModelHistory : mUndoHistory.front()->HistorySequence) { @@ -1996,7 +1997,6 @@ void lcModel::EndHistorySequence(const QString& Description) } UpdateAllViews(); - gMainWindow->UpdateTimeline(true, false); } void lcModel::DiscardHistorySequence()