summaryrefslogtreecommitdiff
path: root/tools/editor
diff options
context:
space:
mode:
Diffstat (limited to 'tools/editor')
-rw-r--r--tools/editor/connections_dialog.cpp1
-rw-r--r--tools/editor/project_manager.cpp2
2 files changed, 2 insertions, 1 deletions
diff --git a/tools/editor/connections_dialog.cpp b/tools/editor/connections_dialog.cpp
index faaae4360b..bdc420c70f 100644
--- a/tools/editor/connections_dialog.cpp
+++ b/tools/editor/connections_dialog.cpp
@@ -309,6 +309,7 @@ ConnectDialog::ConnectDialog() {
tree = memnew(SceneTreeEditor(false));
+ tree->get_scene_tree()->connect("item_activated",this,"_ok");
vbc_left->add_margin_child(TTR("Connect To Node:"),tree,true);
diff --git a/tools/editor/project_manager.cpp b/tools/editor/project_manager.cpp
index d00a22837c..52c8ca4d6c 100644
--- a/tools/editor/project_manager.cpp
+++ b/tools/editor/project_manager.cpp
@@ -390,7 +390,7 @@ public:
popup_centered(Size2(500,145)*EDSCALE);
} else if (mode==MODE_INSTALL){
- set_title(TTR("Install Project: ")+zip_title);
+ set_title(TTR("Install Project:")+" "+zip_title);
get_ok()->set_text(TTR("Install"));
pp->set_text(TTR("Project Path:"));
pn->hide();