diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-04-25 10:41:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-25 10:41:27 +0200 |
commit | c26f0c9bbd52ba6bd822fd6766667de2ce189485 (patch) | |
tree | 62553ee9de27b5093c8e303045a4b44ba9efa28e /editor/plugins | |
parent | 778322161c37740f1d9caf67a9ea53470552a71d (diff) | |
parent | 4bca3236d1476f3b9a19e2d2c215b4fe2ac0ba7b (diff) |
Merge pull request #28377 from YeldhamDev/connection_info_script_changes
Make small changes to the new connection info on script feature
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/script_text_editor.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/editor/plugins/script_text_editor.cpp b/editor/plugins/script_text_editor.cpp index 7590751ecb..46b2e8a5f8 100644 --- a/editor/plugins/script_text_editor.cpp +++ b/editor/plugins/script_text_editor.cpp @@ -79,7 +79,6 @@ void ConnectionInfoDialog::popup_connections(String p_method, Vector<Node *> p_n ConnectionInfoDialog::ConnectionInfoDialog() { set_title(TTR("Connections to method:")); - set_resizable(true); VBoxContainer *vbc = memnew(VBoxContainer); vbc->set_anchor_and_margin(MARGIN_LEFT, ANCHOR_BEGIN, 8 * EDSCALE); @@ -89,7 +88,6 @@ ConnectionInfoDialog::ConnectionInfoDialog() { add_child(vbc); method = memnew(Label); - method->set_text(""); method->set_align(Label::ALIGN_CENTER); vbc->add_child(method); |