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/plugins/animation_library_editor.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/plugins/animation_library_editor.cpp')
| -rw-r--r-- | editor/plugins/animation_library_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/animation_library_editor.cpp b/editor/plugins/animation_library_editor.cpp index 22c552d89e..afe7ea83d8 100644 --- a/editor/plugins/animation_library_editor.cpp +++ b/editor/plugins/animation_library_editor.cpp @@ -798,7 +798,7 @@ AnimationLibraryEditor::AnimationLibraryEditor() { VBoxContainer *dialog_vb = memnew(VBoxContainer); add_library_name = memnew(LineEdit); dialog_vb->add_child(add_library_name); - add_library_name->connect("text_changed", callable_mp(this, &AnimationLibraryEditor::_add_library_validate)); + add_library_name->connect(SceneStringName(text_changed), callable_mp(this, &AnimationLibraryEditor::_add_library_validate)); add_child(add_library_dialog); add_library_validate = memnew(Label); |
