diff options
Diffstat (limited to 'editor/node_dock.cpp')
-rw-r--r-- | editor/node_dock.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/editor/node_dock.cpp b/editor/node_dock.cpp index b1a538ed2e..7edaf0e5af 100644 --- a/editor/node_dock.cpp +++ b/editor/node_dock.cpp @@ -3,7 +3,7 @@ /*************************************************************************/ /* This file is part of: */ /* GODOT ENGINE */ -/* http://www.godotengine.org */ +/* https://godotengine.org */ /*************************************************************************/ /* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */ /* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */ @@ -58,6 +58,9 @@ void NodeDock::_notification(int p_what) { if (p_what == NOTIFICATION_ENTER_TREE) { connections_button->set_icon(get_icon("Connect", "EditorIcons")); groups_button->set_icon(get_icon("Groups", "EditorIcons")); + } else if (p_what == EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED) { + connections_button->set_icon(get_icon("Connect", "EditorIcons")); + groups_button->set_icon(get_icon("Groups", "EditorIcons")); } } |