mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-24 09:31:13 +01:00
Changes to a number of dialogs so that the nvda screen reader can read their titles. The accessibility name of the dialog is set to the title of the dialog.
This commit is contained in:
@@ -6356,6 +6356,7 @@ void AudacityProject::OnAudioDeviceInfo()
|
||||
wxString info = gAudioIO->GetDeviceInfo();
|
||||
|
||||
wxDialog dlg(this, wxID_ANY, wxString(_("Audio Device Info")));
|
||||
dlg.SetName(dlg.GetTitle());
|
||||
ShuttleGui S(&dlg, eIsCreating);
|
||||
|
||||
wxTextCtrl *text;
|
||||
@@ -6488,6 +6489,7 @@ void AudacityProject::OnResample()
|
||||
while (true)
|
||||
{
|
||||
wxDialog dlg(this, wxID_ANY, wxString(_("Resample")));
|
||||
dlg.SetName(dlg.GetTitle());
|
||||
ShuttleGui S(&dlg, eIsCreating);
|
||||
wxString rate;
|
||||
wxArrayString rates;
|
||||
|
||||
Reference in New Issue
Block a user