Browse Source

Merge pull request #26970 from KoBeWi/custom_node_is_now_other_node

Changed 'Custom Node' to 'Other Node' to be less confusing
Rémi Verschelde 6 years ago
parent
commit
3c797248d0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      editor/scene_tree_dock.cpp

+ 1 - 1
editor/scene_tree_dock.cpp

@@ -963,7 +963,7 @@ void SceneTreeDock::_notification(int p_what) {
 
 
 			Button *button_custom = memnew(Button);
 			Button *button_custom = memnew(Button);
 			node_shortcuts->add_child(button_custom);
 			node_shortcuts->add_child(button_custom);
-			button_custom->set_text(TTR("Custom Node"));
+			button_custom->set_text(TTR("Other Node"));
 			button_custom->set_icon(get_icon("Add", "EditorIcons"));
 			button_custom->set_icon(get_icon("Add", "EditorIcons"));
 			button_custom->connect("pressed", this, "_tool_selected", make_binds(TOOL_NEW, false));
 			button_custom->connect("pressed", this, "_tool_selected", make_binds(TOOL_NEW, false));