diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2020-02-15 16:36:10 +0100 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2020-02-15 16:36:10 +0100 |
commit | 5c659dd39953429aeddacc0efacac149d81fc145 (patch) | |
tree | 9dc4a9b604ba775b54cc0ae06443642252d04599 | |
parent | 264f20f8c1b326546494b10f485ff8bc7464b253 (diff) |
Increase the width of the "Connections to method" dialog
This closes #36245.
-rw-r--r-- | editor/plugins/script_text_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/script_text_editor.cpp b/editor/plugins/script_text_editor.cpp index 1ec425d09d..778febaf8a 100644 --- a/editor/plugins/script_text_editor.cpp +++ b/editor/plugins/script_text_editor.cpp @@ -76,7 +76,7 @@ void ConnectionInfoDialog::popup_connections(String p_method, Vector<Node *> p_n } } - popup_centered(Size2(400, 300) * EDSCALE); + popup_centered(Size2(600, 300) * EDSCALE); } ConnectionInfoDialog::ConnectionInfoDialog() { |