Added vertical menu for status build output and app output.

Fix incorrect initialization of the Git plugin model controller when loading a folder from the Welcome Screen.
This commit is contained in:
Martín Lucas Golini
2024-04-28 01:42:43 -03:00
parent 3762a6b87b
commit c971c16911
16 changed files with 273 additions and 59 deletions

View File

@@ -3291,7 +3291,6 @@ void App::loadFolder( const std::string& path ) {
mCurrentProject = rpath;
mCurrentProjectName = FileSystem::fileNameFromPath( mCurrentProject );
mPluginManager->setWorkspaceFolder( rpath );
loadDirTree( rpath );
@@ -3329,6 +3328,8 @@ void App::loadFolder( const std::string& path ) {
if ( mSplitter->getCurEditor() )
setAppTitle( titleFromEditor( mSplitter->getCurEditor() ) );
mPluginManager->setWorkspaceFolder( rpath );
}
#if EE_PLATFORM == EE_PLATFORM_MACOS