mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-06-02 03:26:29 +03:00
Added expressions support in debugger.
Persist debugger state.
This commit is contained in:
@@ -1908,7 +1908,7 @@ void App::saveProject( bool onlyIfNeeded, bool sessionSnapshotEnabled ) {
|
||||
mConfig.saveProject(
|
||||
mCurrentProject, mSplitter, mConfigPath, mProjectDocConfig,
|
||||
mProjectBuildManager ? mProjectBuildManager->getConfig() : ProjectBuildConfiguration(),
|
||||
onlyIfNeeded, sessionSnapshotEnabled && mConfig.workspace.sessionSnapshot );
|
||||
onlyIfNeeded, sessionSnapshotEnabled && mConfig.workspace.sessionSnapshot, mPluginManager.get() );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3205,7 +3205,7 @@ void App::loadFolder( std::string path ) {
|
||||
mProjectBuildManager =
|
||||
std::make_unique<ProjectBuildManager>( rpath, mThreadPool, mSidePanel, this );
|
||||
mConfig.loadProject( rpath, mSplitter, mConfigPath, mProjectDocConfig, this,
|
||||
mConfig.workspace.sessionSnapshot );
|
||||
mConfig.workspace.sessionSnapshot, mPluginManager.get() );
|
||||
Log::info( "Load project took: %.2f ms", projClock.getElapsedTime().asMilliseconds() );
|
||||
|
||||
loadFileSystemMatcher( rpath );
|
||||
|
||||
Reference in New Issue
Block a user