mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-21 14:02:57 +02:00
Rewrite empty prompts to ShuttleGUI functions as {} ...
... so we might more easily redefine the type of the function argument, some other day (not this release)
This commit is contained in:
@@ -489,10 +489,10 @@ public:
|
||||
{
|
||||
if (mLibPath.GetFullPath().IsEmpty()) {
|
||||
text.Printf(_("To find '%s', click here -->"), mName);
|
||||
mPathText = S.AddTextBox(wxT(""), text, 0);
|
||||
mPathText = S.AddTextBox( {}, text, 0);
|
||||
}
|
||||
else {
|
||||
mPathText = S.AddTextBox(wxT(""), mLibPath.GetFullPath(), 0);
|
||||
mPathText = S.AddTextBox( {}, mLibPath.GetFullPath(), 0);
|
||||
}
|
||||
S.Id(ID_FFMPEG_BROWSE).AddButton(_("Browse..."), wxALIGN_RIGHT);
|
||||
S.AddVariableText(_("To get a free copy of FFmpeg, click here -->"), true);
|
||||
|
Reference in New Issue
Block a user