diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2022-02-15 08:56:58 -0600 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2022-03-12 13:34:06 -0600 |
commit | 918b09cabc39dbf13bed2406da56035341ac1cf4 (patch) | |
tree | 20989f8c374745f579f88c0dd925b31fa9b1ba55 /editor/quick_open.h | |
parent | d7019de7e3c416e5492d1508b39c9b25adc2483a (diff) |
Initialize bools in the headers in editor
Diffstat (limited to 'editor/quick_open.h')
-rw-r--r-- | editor/quick_open.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/quick_open.h b/editor/quick_open.h index dc485a7c86..f50f09604c 100644 --- a/editor/quick_open.h +++ b/editor/quick_open.h @@ -42,7 +42,7 @@ class EditorQuickOpen : public ConfirmationDialog { LineEdit *search_box; Tree *search_options; StringName base_type; - bool allow_multi_select; + bool allow_multi_select = false; Vector<String> files; OAHashMap<String, Ref<Texture2D>> icons; |