Fix: Handle when the build path is opened but it doesn't exist yet.
void wxCDMProjectDescriptionPanel::OnBtnOpenBuild(wxCommandEvent& event)
{
- std::string* result;
if(CDMUtilities::openFileExplorer(this->project->GetBuildPath()))
- wxMessageBox(crea::std2wx(*result),_T("Open Folder - Error!"),wxOK | wxICON_ERROR);
+ wxMessageBox(crea::std2wx("The folder doesn't exist or hasn't yet been created."),_T("Open Folder - Error!"),wxOK | wxICON_ERROR);
}
void wxCDMProjectDescriptionPanel::OnBtnOpenFolder(wxCommandEvent& event)