From 9a21678dddda975fc65e61a509e4cae704d5467a Mon Sep 17 00:00:00 2001 From: Rodney Date: Jan 27 2020 08:59:40 +0000 Subject: Merge pull request #3064 from shun-iwasawa/fix_creating_scene_from_startup_popup Modify Creating Scene from Startup Popup --- diff --git a/toonz/sources/toonz/startuppopup.cpp b/toonz/sources/toonz/startuppopup.cpp index f80d4d9..f39f54c 100644 --- a/toonz/sources/toonz/startuppopup.cpp +++ b/toonz/sources/toonz/startuppopup.cpp @@ -504,10 +504,11 @@ void StartupPopup::onCreateButton() { size); TApp::instance()->getCurrentScene()->getScene()->getCurrentCamera()->setRes( res); - // this one is debatable - should the scene be saved right away? - // IoCmd::saveScene(); + // save the scene right away + IoCmd::saveScene(); // this makes sure the scene viewers update to the right fps TApp::instance()->getCurrentScene()->notifySceneSwitched(); + TApp::instance()->getCurrentScene()->notifyNameSceneChange(); hide(); }