mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-29 16:08:46 +01:00
Use RICH2 edit ctrl in place of plain old text ctrl where possible. We can tab into it, and it is expected to be better for screen readers.
This commit is contained in:
@@ -548,7 +548,8 @@ void ExportMultiple::OnExport(wxCommandEvent& event)
|
||||
FileList += mExported[i];
|
||||
FileList += '\n';
|
||||
}
|
||||
S.SetStyle( wxTE_READONLY|wxHSCROLL|wxTE_MULTILINE );
|
||||
S.SetStyle( wxTE_MULTILINE | wxTE_READONLY | wxTE_RICH | wxTE_RICH2 |
|
||||
wxTE_AUTO_URL | wxTE_NOHIDESEL | wxHSCROLL );
|
||||
S.AddTextWindow( FileList );
|
||||
S.AddStandardButtons(eOkButton);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user