From 9ff7c5524f21d299380e68e600cd99133cf6a215 Mon Sep 17 00:00:00 2001 From: volzhs Date: Fri, 15 Jul 2016 14:29:14 +0900 Subject: [PATCH] Perform connect when double click a node on connecting signal window --- tools/editor/connections_dialog.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/editor/connections_dialog.cpp b/tools/editor/connections_dialog.cpp index faaae4360b9..bdc420c70f7 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);