diff options
author | Yuri Sizov <yuris@humnom.net> | 2023-04-03 18:01:11 +0200 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-04-03 18:01:11 +0200 |
commit | 9b500ab53c4aff51d93a87f412f66a8dcc3bb227 (patch) | |
tree | ef8be23546a7a3ce51ec3cb67f332ae69e30daeb /editor/editor_run_native.cpp | |
parent | e4015402647d54a73103e182b7c8d4714399b71d (diff) | |
download | redot-engine-9b500ab53c4aff51d93a87f412f66a8dcc3bb227.tar.gz |
Fix premature theme item access in editor tools
Diffstat (limited to 'editor/editor_run_native.cpp')
-rw-r--r-- | editor/editor_run_native.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_run_native.cpp b/editor/editor_run_native.cpp index 0628dc7116..815d4fab9c 100644 --- a/editor/editor_run_native.cpp +++ b/editor/editor_run_native.cpp @@ -40,6 +40,7 @@ void EditorRunNative::_notification(int p_what) { case NOTIFICATION_THEME_CHANGED: { remote_debug->set_icon(get_theme_icon(SNAME("PlayRemote"), SNAME("EditorIcons"))); } break; + case NOTIFICATION_PROCESS: { bool changed = EditorExport::get_singleton()->poll_export_platforms() || first; @@ -155,7 +156,6 @@ bool EditorRunNative::is_deploy_debug_remote_enabled() const { EditorRunNative::EditorRunNative() { remote_debug = memnew(MenuButton); remote_debug->get_popup()->connect("id_pressed", callable_mp(this, &EditorRunNative::run_native)); - remote_debug->set_icon(get_theme_icon(SNAME("PlayRemote"), SNAME("EditorIcons"))); remote_debug->set_tooltip_text(TTR("Remote Debug")); remote_debug->set_disabled(true); |