1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-03-31 19:44:54 +02:00

Group setting path & default value arguments of Tie...() functions

This commit is contained in:
Paul Licameli
2019-04-03 10:57:59 -04:00
parent 7675d51044
commit d4ffbe0d68
23 changed files with 280 additions and 296 deletions

View File

@@ -379,16 +379,14 @@ void ExportMP3Options::PopulateOrExchange(ShuttleGui & S)
mRate = S.Id(ID_QUALITY).TieNumberAsChoice(
_("Quality"),
wxT("/FileFormats/MP3Bitrate"),
defrate,
{ wxT("/FileFormats/MP3Bitrate"), defrate },
*choices,
codes
);
mMode = S.TieNumberAsChoice(
_("Variable Speed:"),
wxT("/FileFormats/MP3VarMode"),
ROUTINE_FAST,
{ wxT("/FileFormats/MP3VarMode"), ROUTINE_FAST },
varModeNames );
mMode->Enable(enable);