Skip to content

Commit

Permalink
Add audio save config dialog label
Browse files Browse the repository at this point in the history
  • Loading branch information
FangCunWuChang committed Jul 30, 2024
1 parent 2755c85 commit fad2b38
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ui/misc/CoreActions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1597,10 +1597,10 @@ void CoreActions::askForAudioSaveFormatsAsync(
juce::MessageBoxIconType::QuestionIcon };
configWindow->addButton(TRANS("OK"), 1);
configWindow->addButton(TRANS("Cancel"), 0);
configWindow->addComboBox(TRANS("bit-depth"), possibleBitDepth);
configWindow->addComboBox(TRANS("quality"), qualityList);
configWindow->addComboBox(TRANS("bit-depth"), possibleBitDepth, TRANS("bit-depth"));
configWindow->addComboBox(TRANS("quality"), qualityList, TRANS("quality"));
configWindow->addComboBox(TRANS("Meta Data"),
juce::StringArray{ TRANS("Empty"), TRANS("From Output Config") });
juce::StringArray{ TRANS("Empty"), TRANS("From Output Config") }, TRANS("Meta Data"));

/** Default */
auto bitDepthCombo = configWindow->getComboBoxComponent(TRANS("bit-depth"));
Expand Down

0 comments on commit fad2b38

Please sign in to comment.