diff options
author | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-05-14 11:42:00 +0200 |
---|---|---|
committer | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-06-19 09:44:38 +0200 |
commit | fbb879debd0957354ab42731be402b0a5a9f4e48 (patch) | |
tree | 1904b70039d8221e6732828420ef083814ac26ad /scene/gui/spin_box.cpp | |
parent | ca18a06ecbf68db50d8d7e7391b73a245c745cea (diff) | |
download | redot-engine-fbb879debd0957354ab42731be402b0a5a9f4e48.tar.gz |
[Scene] Add `SceneStringNames::text/value_changed`
Diffstat (limited to 'scene/gui/spin_box.cpp')
-rw-r--r-- | scene/gui/spin_box.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/gui/spin_box.cpp b/scene/gui/spin_box.cpp index bfea7b0fbe..2c08d36e7e 100644 --- a/scene/gui/spin_box.cpp +++ b/scene/gui/spin_box.cpp @@ -333,9 +333,9 @@ void SpinBox::set_update_on_text_changed(bool p_enabled) { update_on_text_changed = p_enabled; if (p_enabled) { - line_edit->connect("text_changed", callable_mp(this, &SpinBox::_text_changed), CONNECT_DEFERRED); + line_edit->connect(SceneStringName(text_changed), callable_mp(this, &SpinBox::_text_changed), CONNECT_DEFERRED); } else { - line_edit->disconnect("text_changed", callable_mp(this, &SpinBox::_text_changed)); + line_edit->disconnect(SceneStringName(text_changed), callable_mp(this, &SpinBox::_text_changed)); } } |