summaryrefslogtreecommitdiffstats
path: root/modules/interactive_music
diff options
context:
space:
mode:
authorA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2024-05-14 11:42:00 +0200
committerA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2024-06-19 09:44:38 +0200
commitfbb879debd0957354ab42731be402b0a5a9f4e48 (patch)
tree1904b70039d8221e6732828420ef083814ac26ad /modules/interactive_music
parentca18a06ecbf68db50d8d7e7391b73a245c745cea (diff)
downloadredot-engine-fbb879debd0957354ab42731be402b0a5a9f4e48.tar.gz
[Scene] Add `SceneStringNames::text/value_changed`
Diffstat (limited to 'modules/interactive_music')
-rw-r--r--modules/interactive_music/editor/audio_stream_interactive_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/interactive_music/editor/audio_stream_interactive_editor_plugin.cpp b/modules/interactive_music/editor/audio_stream_interactive_editor_plugin.cpp
index 604421c6b4..e29cc753c9 100644
--- a/modules/interactive_music/editor/audio_stream_interactive_editor_plugin.cpp
+++ b/modules/interactive_music/editor/audio_stream_interactive_editor_plugin.cpp
@@ -368,7 +368,7 @@ AudioStreamInteractiveTransitionEditor::AudioStreamInteractiveTransitionEditor()
edit_vb->add_margin_child(TTR("Fade Beats:"), fade_beats);
fade_beats->set_max(16);
fade_beats->set_step(0.1);
- fade_beats->connect("value_changed", callable_mp(this, &AudioStreamInteractiveTransitionEditor::_edited).unbind(1));
+ fade_beats->connect(SceneStringName(value_changed), callable_mp(this, &AudioStreamInteractiveTransitionEditor::_edited).unbind(1));
filler_clip = memnew(OptionButton);
edit_vb->add_margin_child(TTR("Filler Clip:"), filler_clip);