diff options
author | Yuri Sizov <yuris@humnom.net> | 2023-09-13 13:14:07 +0200 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-09-15 14:51:01 +0200 |
commit | 8ecc0c4f47f78874d94ad701cea4ea0173bddbb2 (patch) | |
tree | 6230a9b3228bf84812d054f16e728bb9b4a31f34 /editor/create_dialog.cpp | |
parent | 6e11fcb92cda87322ab91f5a53e8a230ff1b994f (diff) | |
download | redot-engine-8ecc0c4f47f78874d94ad701cea4ea0173bddbb2.tar.gz |
Fix accessing editor theme items throughout the UI
This also exposes `EditorInterface::get_editor_theme`.
Diffstat (limited to 'editor/create_dialog.cpp')
-rw-r--r-- | editor/create_dialog.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/editor/create_dialog.cpp b/editor/create_dialog.cpp index ba189da779..26c89b0989 100644 --- a/editor/create_dialog.cpp +++ b/editor/create_dialog.cpp @@ -454,16 +454,10 @@ void CreateDialog::_sbox_input(const Ref<InputEvent> &p_ie) { } } -void CreateDialog::_update_theme() { - search_box->set_right_icon(search_options->get_editor_theme_icon(SNAME("Search"))); - favorite->set_icon(search_options->get_editor_theme_icon(SNAME("Favorites"))); -} - void CreateDialog::_notification(int p_what) { switch (p_what) { case NOTIFICATION_ENTER_TREE: { connect("confirmed", callable_mp(this, &CreateDialog::_confirmed)); - _update_theme(); } break; case NOTIFICATION_EXIT_TREE: { @@ -485,7 +479,8 @@ void CreateDialog::_notification(int p_what) { favorites->add_theme_constant_override("icon_max_width", icon_width); recent->set_fixed_icon_size(Size2(icon_width, icon_width)); - _update_theme(); + search_box->set_right_icon(get_editor_theme_icon(SNAME("Search"))); + favorite->set_icon(get_editor_theme_icon(SNAME("Favorites"))); } break; } } |