dnd folder open scan window if engine.cfg not found

This commit is contained in:
Dima Granetchi 2016-07-31 01:10:13 +03:00
parent 2b5198b23d
commit 5e011dcd0e
No known key found for this signature in database
GPG key ID: 32148D7382062D84

View file

@ -1104,11 +1104,17 @@ void ProjectManager::_install_project(const String& p_zip_path,const String& p_t
}
void ProjectManager::_files_dropped(StringArray p_files, int p_screen) {
bool import_project_file = false;
for (int i = 0; i < p_files.size(); i++) {
if (p_files[i].ends_with("engine.cfg")) {
npdialog->import_from_file(p_files[i]);
import_project_file = true;
}
}
if (!import_project_file && p_files.size() > 0) {
scan_dir->set_current_dir(p_files[0]);
scan_dir->popup_centered_ratio();
}
}
void ProjectManager::_bind_methods() {