Browse Source

Changed the tooltip message for instancing a scene.

- Old wording was misleading as it gave the impression that you could select any node from another scene.
- New wording matches the functionality that you instance the entire scene as a single node.
Nathan Warden 10 years ago
parent
commit
c6a87d3a50
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/editor/scene_tree_dock.cpp

+ 1 - 1
tools/editor/scene_tree_dock.cpp

@@ -1254,7 +1254,7 @@ SceneTreeDock::SceneTreeDock(EditorNode *p_editor,Node *p_scene_root,EditorSelec
 
 
 	tb = memnew( ToolButton );
 	tb = memnew( ToolButton );
 	tb->connect("pressed",this,"_tool_selected",make_binds(TOOL_INSTANCE, false));
 	tb->connect("pressed",this,"_tool_selected",make_binds(TOOL_INSTANCE, false));
-	tb->set_tooltip("Instance a Node from scene file.");
+	tb->set_tooltip("Instance a scene file as a Node.");
 	hbc_top->add_child(tb);
 	hbc_top->add_child(tb);
 	tool_buttons[TOOL_INSTANCE]=tb;
 	tool_buttons[TOOL_INSTANCE]=tb;