1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-15 09:01:12 +01:00

Help button for many warning messages; Restored warning icon.

The error icon was gone because we are now using the ErrorDialog, which didn't have it.  So added back explicitly.  I decided to go with wxART_WARNING rather than wxART_ERROR because nearly all of these present as warnings.
This commit is contained in:
James Crook
2020-09-14 17:43:28 +01:00
parent b9212d8393
commit caf4eadb97
14 changed files with 74 additions and 20 deletions

View File

@@ -1754,7 +1754,9 @@ void WaveClip::Resample(int rate, ProgressDialog *progress)
if (error)
throw SimpleMessageBoxException{
XO("Resampling failed.")
XO("Resampling failed."),
XO("Warning"),
"Error:_Resampling"
};
else
{