summaryrefslogtreecommitdiff
path: root/modules/mono
diff options
context:
space:
mode:
authortrollodel <33117082+trollodel@users.noreply.github.com>2021-11-17 21:08:55 +0100
committertrollodel <33117082+trollodel@users.noreply.github.com>2022-01-20 20:13:26 +0100
commitaa1102fc536bd7b3a2cff703d79713c454af7e6c (patch)
treedbe06bedc829e44e5186ea36a70386e8209b2666 /modules/mono
parent8fc0dd9997c80059ec2b273e7004daa458d370ee (diff)
Store panels and docks singletons in their own classes
Diffstat (limited to 'modules/mono')
-rw-r--r--modules/mono/csharp_script.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mono/csharp_script.cpp b/modules/mono/csharp_script.cpp
index 9d416dcfce..26436e3ec0 100644
--- a/modules/mono/csharp_script.cpp
+++ b/modules/mono/csharp_script.cpp
@@ -1168,8 +1168,8 @@ void CSharpLanguage::reload_assemblies(bool p_soft_reload) {
#ifdef TOOLS_ENABLED
// FIXME: Hack to refresh editor in order to display new properties and signals. See if there is a better alternative.
if (Engine::get_singleton()->is_editor_hint()) {
- EditorNode::get_singleton()->get_inspector()->update_tree();
- NodeDock::singleton->update_lists();
+ InspectorDock::get_inspector_singleton()->update_tree();
+ NodeDock::get_singleton()->update_lists();
}
#endif
}