aboutsummaryrefslogtreecommitdiff
path: root/editor/scene_tree_editor.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/scene_tree_editor.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/scene_tree_editor.cpp')
-rw-r--r--editor/scene_tree_editor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/scene_tree_editor.cpp b/editor/scene_tree_editor.cpp
index 6dcd5e54e..a6e0af05b 100644
--- a/editor/scene_tree_editor.cpp
+++ b/editor/scene_tree_editor.cpp
@@ -215,9 +215,9 @@ bool SceneTreeEditor::_add_nodes(Node *p_node, TreeItem *p_parent) {
bool has_groups = p_node->has_persistent_groups();
if (has_connections && has_groups) {
- item->add_button(0, get_icon("ConnectionAndGroups", "EditorIcons"), BUTTON_SIGNALS, false, TTR("Node has connection(s) and group(s)\nClick to show signals dock."));
+ item->add_button(0, get_icon("SignalsAndGroups", "EditorIcons"), BUTTON_SIGNALS, false, TTR("Node has connection(s) and group(s)\nClick to show signals dock."));
} else if (has_connections) {
- item->add_button(0, get_icon("Connect", "EditorIcons"), BUTTON_SIGNALS, false, TTR("Node has connections.\nClick to show signals dock."));
+ item->add_button(0, get_icon("Signals", "EditorIcons"), BUTTON_SIGNALS, false, TTR("Node has connections.\nClick to show signals dock."));
} else if (has_groups) {
item->add_button(0, get_icon("Groups", "EditorIcons"), BUTTON_GROUPS, false, TTR("Node is in group(s).\nClick to show groups dock."));
}