1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-06 17:13:49 +01:00

Fix unwrapped wxMessageDialog, small mistake in aee4005

This commit is contained in:
Paul Licameli
2019-01-28 18:00:17 -05:00
parent 38849cc902
commit d3316173b6

View File

@@ -57,7 +57,7 @@ bool ContrastDialog::GetDB(float &dB)
return false;
}
if(numberSelectedTracks == 0) {
wxMessageDialog m(NULL, _("Please select an audio track."), _("Error"), wxOK);
AudacityMessageDialog m(NULL, _("Please select an audio track."), _("Error"), wxOK);
m.ShowModal();
return false;
}