Merge pull request #66215 from akien-mga/editor-quickopen-disable-load-resources

This commit is contained in:
Rémi Verschelde 2022-09-21 18:05:25 +02:00 committed by GitHub
commit b770fa2791
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -43,7 +43,7 @@ class EditorQuickOpen : public ConfirmationDialog {
Tree *search_options = nullptr;
StringName base_type;
bool allow_multi_select = false;
bool _load_resources = true;
bool _load_resources = false; // Prohibitively slow for now.
Vector<String> files;
OAHashMap<String, Ref<Texture2D>> icons;