mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-26 23:33:49 +01:00
David Bailes patch for bug 577
This commit is contained in:
@@ -182,6 +182,7 @@ void DirectoriesPrefs::UpdateFreeSpace(wxCommandEvent & e)
|
||||
|
||||
if( mFreeSpace != NULL ) {
|
||||
mFreeSpace->SetLabel(label);
|
||||
mFreeSpace->SetName(label); // fix for bug 577 (NVDA/Narrator screen readers do not read static text in dialogs)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -153,6 +153,7 @@ void LibraryPrefs::PopulateOrExchange(ShuttleGui & S)
|
||||
void LibraryPrefs::SetMP3VersionText(bool prompt)
|
||||
{
|
||||
mMP3Version->SetLabel(GetMP3Version(this, prompt));
|
||||
mMP3Version->SetName(mMP3Version->GetLabel()); // fix for bug 577 (NVDA/Narrator screen readers do not read static text in dialogs)
|
||||
}
|
||||
|
||||
/// Opens a file-finder dialog so that the user can
|
||||
@@ -173,6 +174,7 @@ void LibraryPrefs::OnMP3DownButton(wxCommandEvent & e)
|
||||
void LibraryPrefs::SetFFmpegVersionText()
|
||||
{
|
||||
mFFmpegVersion->SetLabel(GetFFmpegVersion(this));
|
||||
mFFmpegVersion->SetName(mFFmpegVersion->GetLabel()); // fix for bug 577 (NVDA/Narrator screen readers do not read static text in dialogs)
|
||||
}
|
||||
|
||||
void LibraryPrefs::OnFFmpegFindButton(wxCommandEvent & e)
|
||||
|
||||
Reference in New Issue
Block a user