Change wording of ffmpeg dialog box

pull/261/head
James H Ball 2024-12-01 10:48:10 +00:00 zatwierdzone przez James H Ball
rodzic f26ea1011a
commit 56ae7b1fce
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -175,11 +175,11 @@ void VisualiserComponent::setRecording(bool recording) {
if (!ffmpegFile.exists()) {
// ask the user if they want to download ffmpeg
juce::MessageBoxOptions options = juce::MessageBoxOptions()
.withTitle("FFmpeg not found")
.withMessage("FFmpeg not found. This is required to record video to .mp4.\n\nWould you like to download it now?")
.withTitle("Recording requires FFmpeg")
.withMessage("FFmpeg is required to record video to .mp4.\n\nWould you like to download it now?")
.withButton("Yes")
.withButton("No")
.withIconType(juce::AlertWindow::WarningIcon)
.withIconType(juce::AlertWindow::QuestionIcon)
.withAssociatedComponent(this);
juce::AlertWindow::showAsync(options, [this](int result) {