Fix crash on project importing by dragging a folder.

Fixes #7226

(cherry picked from commit d82c2687f3)
This commit is contained in:
Andreas Haas 2016-12-02 18:51:31 +01:00 committed by Rémi Verschelde
parent f184455187
commit 1e34e8d5e1

View file

@ -1153,7 +1153,7 @@ void ProjectManager::_files_dropped(StringArray p_files, int p_screen) {
dir->list_dir_begin();
String file = dir->get_next();
while(confirm && file!=String()) {
if (!da->current_is_dir() && file.ends_with("engine.cfg")) {
if (!dir->current_is_dir() && file.ends_with("engine.cfg")) {
confirm = false;
}
file = dir->get_next();