summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2022-09-21 17:02:43 +0200
committerRémi Verschelde <rverschelde@gmail.com>2022-09-21 17:02:43 +0200
commit7817a472f3fe9c5d62e7a1ba6d6e906be3fa47f2 (patch)
tree73397b49b8025cfe7fb188227599adab1f035e56 /editor
parent53d2a9acddf4df5ba7819c154a8a52dc58ddcd1d (diff)
QuickOpen: Disable loading resources for now, too slow
As expected while reviewing #62417 this is indeed not practical without a better system to retrieve this information. Fixes #66179.
Diffstat (limited to 'editor')
-rw-r--r--editor/editor_quick_open.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_quick_open.h b/editor/editor_quick_open.h
index 86a419b538..83cbbd7cac 100644
--- a/editor/editor_quick_open.h
+++ b/editor/editor_quick_open.h
@@ -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;