animated layer merge warning, fix timeline update on document open

This commit is contained in:
2019-11-17 17:57:09 +01:00
parent 3b69ff4ae2
commit 7b63e5d2ce
2 changed files with 16 additions and 6 deletions

View File

@@ -2560,9 +2560,12 @@ bool Canvas::project_open_thread(std::string file_path)
if (App::I->layout.m_loaded)
{
pb->destroy();
App::I->title_update();
App::I->update_rec_frames();
App::I->animation->load_layers();
App::I->ui_task([] {
App::I->title_update();
App::I->update_rec_frames();
Canvas::I->anim_update();
App::I->animation->load_layers();
});
}
return true;
}