diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2024-06-19 10:10:00 +0200 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-06-19 10:10:00 +0200 |
| commit | 558054f707de38b24af9225294a73acc3988a80c (patch) | |
| tree | e9d7d3834a353e54de3b0d824840c97bf707fcd0 /editor/project_manager/project_dialog.cpp | |
| parent | 0cc321b144ecf74315ce2e0b52772cf4f92c9aae (diff) | |
| parent | fbb879debd0957354ab42731be402b0a5a9f4e48 (diff) | |
| download | redot-engine-558054f707de38b24af9225294a73acc3988a80c.tar.gz | |
Merge pull request #92640 from AThousandShips/text_value_changed_sname
[Scene] Add `SceneStringNames::text/value_changed`
Diffstat (limited to 'editor/project_manager/project_dialog.cpp')
| -rw-r--r-- | editor/project_manager/project_dialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/project_manager/project_dialog.cpp b/editor/project_manager/project_dialog.cpp index 90424aa2b8..262a1ecc1a 100644 --- a/editor/project_manager/project_dialog.cpp +++ b/editor/project_manager/project_dialog.cpp @@ -975,9 +975,9 @@ ProjectDialog::ProjectDialog() { add_child(fdialog_project); add_child(fdialog_install); - project_name->connect("text_changed", callable_mp(this, &ProjectDialog::_project_name_changed).unbind(1)); - project_path->connect("text_changed", callable_mp(this, &ProjectDialog::_project_path_changed).unbind(1)); - install_path->connect("text_changed", callable_mp(this, &ProjectDialog::_install_path_changed).unbind(1)); + project_name->connect(SceneStringName(text_changed), callable_mp(this, &ProjectDialog::_project_name_changed).unbind(1)); + project_path->connect(SceneStringName(text_changed), callable_mp(this, &ProjectDialog::_project_path_changed).unbind(1)); + install_path->connect(SceneStringName(text_changed), callable_mp(this, &ProjectDialog::_install_path_changed).unbind(1)); fdialog_project->connect("dir_selected", callable_mp(this, &ProjectDialog::_project_path_selected)); fdialog_project->connect("file_selected", callable_mp(this, &ProjectDialog::_project_path_selected)); fdialog_install->connect("dir_selected", callable_mp(this, &ProjectDialog::_install_path_selected)); |
