diff options
author | Yuri Rubinsky <chaosus89@gmail.com> | 2022-11-07 15:44:14 +0300 |
---|---|---|
committer | Yuri Rubinsky <chaosus89@gmail.com> | 2022-11-23 11:33:56 +0300 |
commit | 09d7a1b864d6c418285aa6bdd8610e36fedc6e2c (patch) | |
tree | db31f944a85b8522fddbbc6b2892bb04410863a7 /editor/editor_quick_open.cpp | |
parent | e3a51e53ef055a1fe94351b68173c6dfcd2cb371 (diff) | |
download | redot-engine-09d7a1b864d6c418285aa6bdd8610e36fedc6e2c.tar.gz |
Fix Quick Open window to use EDSCALE and save the size between popups
Diffstat (limited to 'editor/editor_quick_open.cpp')
-rw-r--r-- | editor/editor_quick_open.cpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/editor/editor_quick_open.cpp b/editor/editor_quick_open.cpp index 50429878f9..bb533b88d6 100644 --- a/editor/editor_quick_open.cpp +++ b/editor/editor_quick_open.cpp @@ -32,12 +32,20 @@ #include "core/os/keyboard.h" #include "editor/editor_node.h" +#include "editor/editor_scale.h" void EditorQuickOpen::popup_dialog(const String &p_base, bool p_enable_multi, bool p_dontclear) { base_type = p_base; allow_multi_select = p_enable_multi; search_options->set_select_mode(allow_multi_select ? Tree::SELECT_MULTI : Tree::SELECT_SINGLE); - popup_centered_clamped(Size2i(600, 440), 0.8f); + + static bool was_showed = false; + if (!was_showed) { + was_showed = true; + popup_centered_clamped(Size2(600, 440) * EDSCALE, 0.8f); + } else { + show(); + } EditorFileSystemDirectory *efsd = EditorFileSystem::get_singleton()->get_filesystem(); _build_search_cache(efsd); |