Kicad, project_tree_pane.cpp: revert the fix "directories visible in project

tree were not populated" because it creates wxWidgets alerts.
This commit is contained in:
jean-pierre charras 2021-01-08 11:45:43 +01:00
parent 5441da9a47
commit 2055151b9d
1 changed files with 4 additions and 2 deletions

View File

@ -584,9 +584,11 @@ void PROJECT_TREE_PANE::ReCreateTreePrj()
if( filename != fn.GetFullName() ) if( filename != fn.GetFullName() )
{ {
wxString name = dir.GetName() + wxFileName::GetPathSeparator() + filename; wxString name = dir.GetName() + wxFileName::GetPathSeparator() + filename;
// Add items living in the project directory, and populate the item // Add items living in the project directory, and do not populate the item
// if it is a directory (sub directories will be not populated) // if it is a directory (sub directories will be not populated)
addItemToProjectTree( name, m_root, &projects, true ); // (Populate the directory is better but creates wxWidgets alerts in debug
// mode)
addItemToProjectTree( name, m_root, &projects, false );
} }
haveFile = dir.GetNext( &filename ); haveFile = dir.GetNext( &filename );