This commit is contained in:
Spartan322
2024-11-19 11:38:29 -05:00
131 changed files with 1351 additions and 787 deletions

View File

@@ -526,7 +526,7 @@ void ConnectDialog::set_dst_node(Node *p_node) {
StringName ConnectDialog::get_dst_method_name() const {
String txt = dst_method->get_text();
if (txt.contains("(")) {
txt = txt.left(txt.find("(")).strip_edges();
txt = txt.left(txt.find_char('(')).strip_edges();
}
return txt;
}