update to support juce 6.1. added mute audio while processing capture option. added a mac specific priority fix. use async popup menus and browsers where needed.
This commit is contained in:
@ -186,10 +186,9 @@ void RenderSettingsComponent::buttonClicked (Button* buttonThatWasClicked)
|
||||
FileChooser myChooser("Please select audio file to render...",
|
||||
lastexportfolder,
|
||||
"*.wav");
|
||||
if (myChooser.browseForFileToSave(true))
|
||||
{
|
||||
outfileNameEditor.setText(myChooser.getResult().getFullPathName(), dontSendNotification);
|
||||
}
|
||||
myChooser.launchAsync(FileBrowserComponent::saveMode, [this](const FileChooser &chooser) {
|
||||
outfileNameEditor.setText(chooser.getResult().getFullPathName(), dontSendNotification);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user