1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-10 16:43:33 +02:00

The title of the effect dialogue should not be the empty string (found because the empty string cannot be translated!)

This commit is contained in:
richardash1981
2013-05-03 20:58:17 +00:00
parent d8181761a9
commit 3fb574f5ca

View File

@@ -302,7 +302,7 @@ BEGIN_EVENT_TABLE(ReverbDialogue, EffectDialog)
END_EVENT_TABLE()
ReverbDialogue::ReverbDialogue(EffectReverb * effect, wxWindow * parent):
EffectDialog(parent, _(""), PROCESS_EFFECT, wxDEFAULT_DIALOG_STYLE, ePreviewDryButton),
EffectDialog(parent, _("Reverb"), PROCESS_EFFECT, wxDEFAULT_DIALOG_STYLE, ePreviewDryButton),
mEffect(*effect), mParams(effect->mParams)
{
SetTitle();