diff options
| author | Daniel J. Ramirez | 2017-10-12 13:59:25 -0500 |
|---|---|---|
| committer | Daniel J. Ramirez | 2017-10-12 14:43:11 -0500 |
| commit | dbc37afcd95bf89ba08c70431cf0d22ec3379cef (patch) | |
| tree | 39f973fc16831fd162d8530133d15ce49dbad502 /editor/node_dock.cpp | |
| parent | f956f2979eb6603724236c228be4fff913f2d26e (diff) | |
| download | godot-dbc37afcd95bf89ba08c70431cf0d22ec3379cef.tar.gz godot-dbc37afcd95bf89ba08c70431cf0d22ec3379cef.tar.zst godot-dbc37afcd95bf89ba08c70431cf0d22ec3379cef.zip | |
Added and improved some icons, plus some other minor visual fixes.
Diffstat (limited to '')
| -rw-r--r-- | editor/node_dock.cpp | 4 |
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")); } } |
