summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNounours Heureux <schtroumps31@gmail.com>2016-01-03 18:05:51 +0100
committerNounours Heureux <schtroumps31@gmail.com>2016-01-03 18:07:05 +0100
commit1c3a448a329bf9ba209d319dd1d717b7cfc28411 (patch)
treed623da7ddfbdf039400f90025fc88935cee5baa2
parent61745855d0bb309cb0ebcd2d92fc15f7f6fb1840 (diff)
Change Import > Sub-Scene to Import > Node from scene
-rw-r--r--tools/editor/editor_node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp
index 9151e63df6..fbd4d36022 100644
--- a/tools/editor/editor_node.cpp
+++ b/tools/editor/editor_node.cpp
@@ -415,7 +415,7 @@ void EditorNode::_rebuild_import_menu()
{
PopupMenu* p = import_menu->get_popup();
p->clear();
- p->add_item("Sub-Scene", FILE_IMPORT_SUBSCENE);
+ p->add_item("Node from scene", FILE_IMPORT_SUBSCENE);
p->add_separator();
for (int i = 0; i < editor_import_export->get_import_plugin_count(); i++) {
p->add_item(editor_import_export->get_import_plugin(i)->get_visible_name(), IMPORT_PLUGIN_BASE + i);