1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-09 17:07:43 +02:00

Fix bug 1740

Help on Internet dialog non-responsive when invoked by
help button on "Error opening sound device..."dialog
This commit is contained in:
Steve Daulton 2017-09-06 13:19:42 +01:00
parent d7cc85b1e1
commit 7314de6a3d
2 changed files with 3 additions and 3 deletions

View File

@ -2625,7 +2625,7 @@ void Effect::Preview(bool dryOnly)
else { else {
ShowErrorDialog(FocusDialog, _("Error"), ShowErrorDialog(FocusDialog, _("Error"),
_("Error opening sound device.\nTry changing the audio host, playback device and the project sample rate."), _("Error opening sound device.\nTry changing the audio host, playback device and the project sample rate."),
wxT("Error_opening_sound_device"), false); wxT("Error_opening_sound_device"));
} }
} }
} }

View File

@ -718,7 +718,7 @@ int ControlToolBar::PlayPlayRegion(const SelectedRegion &selectedRegion,
// Show error message if stream could not be opened // Show error message if stream could not be opened
ShowErrorDialog(this, _("Error"), ShowErrorDialog(this, _("Error"),
_("Error opening sound device.\nTry changing the audio host, playback device and the project sample rate."), _("Error opening sound device.\nTry changing the audio host, playback device and the project sample rate."),
wxT("Error_opening_sound_device"), false); wxT("Error_opening_sound_device"));
}); });
} }
} }
@ -1200,7 +1200,7 @@ void ControlToolBar::OnRecord(wxCommandEvent &evt)
// Show error message if stream could not be opened // Show error message if stream could not be opened
ShowErrorDialog(this, _("Error"), ShowErrorDialog(this, _("Error"),
_("Error opening sound device.\nTry changing the audio host, recording device and the project sample rate."), _("Error opening sound device.\nTry changing the audio host, recording device and the project sample rate."),
wxT("Error_opening_sound_device"), false); wxT("Error_opening_sound_device"));
} }
} }
} }