diff options
author | Marcus Elg <marcusaccounts@yahoo.se> | 2022-12-19 17:42:54 +0100 |
---|---|---|
committer | Marcus Elg <marcusaccounts@yahoo.se> | 2022-12-19 17:42:54 +0100 |
commit | 7f88943483ec84f5cc0a198e817c73ae3b0237ba (patch) | |
tree | a417ae84c064ab02b3212c72e1143763935fd693 /editor | |
parent | 0bb94df247a0a0c22333e2e99744fc3fd184601a (diff) |
Fix inconsistent audio import menu naming
Diffstat (limited to 'editor')
-rw-r--r-- | editor/import/audio_stream_import_settings.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/import/audio_stream_import_settings.cpp b/editor/import/audio_stream_import_settings.cpp index f635c74547..71d0d4b399 100644 --- a/editor/import/audio_stream_import_settings.cpp +++ b/editor/import/audio_stream_import_settings.cpp @@ -552,7 +552,7 @@ AudioStreamImportSettings::AudioStreamImportSettings() { bpm_edit->connect("value_changed", callable_mp(this, &AudioStreamImportSettings::_settings_changed).unbind(1)); interactive_hb->add_child(bpm_edit); interactive_hb->add_spacer(); - bar_beats_label = memnew(Label(TTR("Beats/Bar:"))); + bar_beats_label = memnew(Label(TTR("Bar Beats:"))); interactive_hb->add_child(bar_beats_label); bar_beats_edit = memnew(SpinBox); bar_beats_edit->set_tooltip_text(TTR("Configure the Beats Per Bar. This used for music-aware transitions between AudioStreams.")); @@ -562,7 +562,7 @@ AudioStreamImportSettings::AudioStreamImportSettings() { interactive_hb->add_child(bar_beats_edit); interactive_hb->add_spacer(); beats_enabled = memnew(CheckBox); - beats_enabled->set_text(TTR("Length (in beats):")); + beats_enabled->set_text(TTR("Beat Count:")); beats_enabled->connect("toggled", callable_mp(this, &AudioStreamImportSettings::_settings_changed).unbind(1)); interactive_hb->add_child(beats_enabled); beats_edit = memnew(SpinBox); |