Project manager: unescape project names (#4494)

Fixes #3609
(cherry picked from commit 78adbf4790)
This commit is contained in:
Rémi Verschelde 2016-05-01 11:37:32 +02:00 committed by Rémi Verschelde
parent 40b546fb83
commit 0b49d78a3f
1 changed files with 1 additions and 1 deletions

View File

@ -539,7 +539,7 @@ void ProjectManager::_load_recent_projects() {
String project_name="Unnamed Project";
if (cf->has_section_key("application","name")) {
project_name = cf->get_value("application","name");
project_name = static_cast<String>(cf->get_value("application","name")).xml_unescape();
}
if (filter_option==ProjectListFilter::FILTER_NAME && search_term!="" && project_name.findn(search_term)==-1)