mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 14:12:51 +00:00
dnd folder open scan window if engine.cfg not found
This commit is contained in:
parent
2b5198b23d
commit
5e011dcd0e
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user