diff options
| author | Rémi Verschelde <remi@verschelde.fr> | 2022-02-03 22:21:24 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-03 22:21:24 +0100 |
| commit | f8f19b313d62b707467c54d245b9c3e0ad53f34f (patch) | |
| tree | 975f9c64fe51c3809c7c3b2eb0cd46d3563d2bd2 /editor/plugins/animation_state_machine_editor.cpp | |
| parent | 025e778020dde6dcee89f5ae1e2a63ccddc24340 (diff) | |
| parent | adbe948bda202209b55249198e1837324e703ddb (diff) | |
Merge pull request #57562 from AnilBK/string-add-contains
String: Add contains().
Diffstat (limited to 'editor/plugins/animation_state_machine_editor.cpp')
| -rw-r--r-- | editor/plugins/animation_state_machine_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/animation_state_machine_editor.cpp b/editor/plugins/animation_state_machine_editor.cpp index 649fc53b3a..f750c92fb3 100644 --- a/editor/plugins/animation_state_machine_editor.cpp +++ b/editor/plugins/animation_state_machine_editor.cpp @@ -1059,7 +1059,7 @@ void AnimationNodeStateMachineEditor::_removed_from_graph() { void AnimationNodeStateMachineEditor::_name_edited(const String &p_text) { const String &new_name = p_text; - ERR_FAIL_COND(new_name.is_empty() || new_name.find(".") != -1 || new_name.find("/") != -1); + ERR_FAIL_COND(new_name.is_empty() || new_name.contains(".") || new_name.contains("/")); if (new_name == prev_name) { return; // Nothing to do. |