Skip to content
Snippets Groups Projects
Commit f8dc1abc authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen
Browse files

Core: Create Workspace before Library

So that the Workspace can perform safety checks on the provided path
parent 37615c86
No related branches found
No related tags found
No related merge requests found
......@@ -47,9 +47,9 @@ Core::Core()
createSettings();
m_currentProject = new Project( m_settings );
m_workspace = new Workspace( m_settings );
m_library = new Library( m_settings, m_currentProject->settings() );
m_recentProjects = new RecentProjects( m_settings );
m_workspace = new Workspace( m_settings );
m_workflow = new MainWorkflow( m_currentProject->settings() );
QObject::connect( m_workflow, &MainWorkflow::cleanChanged, m_currentProject, &Project::cleanChanged );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment