From 277a21024c84e4449195db7ce56bae55e4f751e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Wed, 21 Sep 2022 17:02:43 +0200 Subject: [PATCH] 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. --- editor/editor_quick_open.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/editor_quick_open.h b/editor/editor_quick_open.h index 86a419b53878b6..83cbbd7cacd841 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 files; OAHashMap> icons;