aboutsummaryrefslogtreecommitdiff
path: root/editor/node_dock.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2017-10-13 07:43:06 +0200
committerGitHub2017-10-13 07:43:06 +0200
commit750d75dc4caec8f54e1b9faed09cad65c7fbfcae (patch)
tree755df68f023a28f87674384d7e0ac50bb199e81f /editor/node_dock.cpp
parent8bdb04c839f475a2bb668b2b0032397c1b691394 (diff)
parentdbc37afcd95bf89ba08c70431cf0d22ec3379cef (diff)
downloadgodot-750d75dc4caec8f54e1b9faed09cad65c7fbfcae.tar.gz
godot-750d75dc4caec8f54e1b9faed09cad65c7fbfcae.tar.zst
godot-750d75dc4caec8f54e1b9faed09cad65c7fbfcae.zip
Merge pull request #12057 from djrm/pr_visual_improvements
Added and improved some icons, plus some other minor visual fixes.
Diffstat (limited to 'editor/node_dock.cpp')
-rw-r--r--editor/node_dock.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/node_dock.cpp b/editor/node_dock.cpp
index 7edaf0e5a..20392a67a 100644
--- a/editor/node_dock.cpp
+++ b/editor/node_dock.cpp
@@ -56,10 +56,10 @@ void NodeDock::_bind_methods() {
void NodeDock::_notification(int p_what) {
if (p_what == NOTIFICATION_ENTER_TREE) {
- connections_button->set_icon(get_icon("Connect", "EditorIcons"));
+ connections_button->set_icon(get_icon("Signals", "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"));
+ connections_button->set_icon(get_icon("Signals", "EditorIcons"));
groups_button->set_icon(get_icon("Groups", "EditorIcons"));
}
}