summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-02-17 09:54:30 +0100
committerGitHub <noreply@github.com>2020-02-17 09:54:30 +0100
commitd5062f069e7f7d14cff8d63916dfa812c04045a4 (patch)
tree1e85ed8c86aa71d2daa12f23888cffb4eb57190e /editor
parentc3f2b84694d6e4c7d4c05efc6429934981f9a1b5 (diff)
parent5c659dd39953429aeddacc0efacac149d81fc145 (diff)
Merge pull request #36248 from Calinou/connections-method-dialog-increase-width
Increase the width of the "Connections to method" dialog
Diffstat (limited to 'editor')
-rw-r--r--editor/plugins/script_text_editor.cpp2
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() {