summaryrefslogtreecommitdiffstats
path: root/editor/editor_quick_open.h
diff options
context:
space:
mode:
authorlawnjelly <lawnjelly@gmail.com>2023-05-17 16:22:26 +0100
committerlawnjelly <lawnjelly@gmail.com>2023-06-06 15:36:51 +0100
commitb69c8b47916e4b3511c1aeff254ebfa6deef37ba (patch)
tree121f1601353f788375749abd834bfb5515afa843 /editor/editor_quick_open.h
parent543750a1b3f5696f9ba8e91cb49dc7db05d2ae62 (diff)
downloadredot-engine-b69c8b47916e4b3511c1aeff254ebfa6deef37ba.tar.gz
Single Compilation Unit build.
Adds support for simple SCU build (DEV_ENABLED only). This speeds up compilation by compiling multiple cpp files within a single translation unit.
Diffstat (limited to 'editor/editor_quick_open.h')
-rw-r--r--editor/editor_quick_open.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/editor_quick_open.h b/editor/editor_quick_open.h
index 4b63a226c2..2b64efb151 100644
--- a/editor/editor_quick_open.h
+++ b/editor/editor_quick_open.h
@@ -39,6 +39,9 @@
class EditorQuickOpen : public ConfirmationDialog {
GDCLASS(EditorQuickOpen, ConfirmationDialog);
+ static Rect2i prev_rect;
+ static bool was_showed;
+
LineEdit *search_box = nullptr;
Tree *search_options = nullptr;
String base_type;