From a880b2dcbacf2703152c9c3245afbde30fbd48be Mon Sep 17 00:00:00 2001 From: kobewi Date: Wed, 8 May 2024 14:19:11 +0200 Subject: [PATCH] Improve transition enabled header in interactive music editor --- .../editor/audio_stream_interactive_editor_plugin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 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 da62c94a5b0..9b51221df63 100644 --- a/modules/interactive_music/editor/audio_stream_interactive_editor_plugin.cpp +++ b/modules/interactive_music/editor/audio_stream_interactive_editor_plugin.cpp @@ -340,8 +340,8 @@ AudioStreamInteractiveTransitionEditor::AudioStreamInteractiveTransitionEditor() split->add_child(edit_vb); transition_enabled = memnew(CheckBox); - transition_enabled->set_text(TTR("Use Transition")); - edit_vb->add_margin_child(TTR("Transition Enabled:"), transition_enabled); + transition_enabled->set_text(TTR("Enabled")); + edit_vb->add_margin_child(TTR("Use Transition:"), transition_enabled); transition_enabled->connect("pressed", callable_mp(this, &AudioStreamInteractiveTransitionEditor::_edited)); transition_from = memnew(OptionButton);