string fix

This commit is contained in:
jean-pierre charras 2020-04-30 21:03:03 +02:00
parent b7e7d6fd5c
commit 262283995c
1 changed files with 2 additions and 2 deletions

View File

@ -92,8 +92,8 @@ DLG_SELECT_3DMODEL::DLG_SELECT_3DMODEL( wxWindow* aParent, S3D_CACHE* aCacheMana
if( !ext_list.empty() )
{
wxString full_filter;
full_filter.Printf( _( "All supported files (%s)|%s)" ), ext_list, ext_list );
full_filter << '|' << filter;
full_filter.Printf( _( "All supported files (%s)" ), ext_list );
full_filter << '|' << ext_list << '|' << filter;
m_FileTree->SetFilter( full_filter );
}
else