1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-01 08:09:41 +02:00

Bug 2365 - Show Log text is invisible on W10- set to "High Contrast"

This commit is contained in:
Leland Lucius 2020-04-14 16:42:00 -05:00
parent 38da22c18b
commit 9f5177056d
4 changed files with 4 additions and 4 deletions

View File

@ -160,7 +160,7 @@ void AudacityLogger::Show(bool show)
{
S.StartVerticalLay(true);
{
mText = S.Style(wxTE_MULTILINE | wxHSCROLL | wxTE_READONLY)
mText = S.Style(wxTE_MULTILINE | wxHSCROLL | wxTE_READONLY | wxTE_RICH)
.AddTextWindow(mBuffer);
S.AddSpace(0, 5);

View File

@ -222,7 +222,7 @@ void BenchmarkDialog::MakeBenchmarkDialog()
mText = S.Id(StaticTextID)
/* i18n-hint noun */
.Name(XO("Output"))
.Style( wxTE_MULTILINE | wxTE_READONLY )
.Style( wxTE_MULTILINE | wxTE_READONLY | wxTE_RICH )
.MinSize( { 500, 200 } )
.AddTextWindow(wxT(""));

View File

@ -3256,7 +3256,7 @@ NyquistOutputDialog::NyquistOutputDialog(wxWindow * parent, wxWindowID id,
S.Prop( 1 )
.Position(wxEXPAND | wxALL)
.MinSize( { 480, 250 } )
.Style(wxTE_MULTILINE | wxTE_READONLY)
.Style(wxTE_MULTILINE | wxTE_READONLY | wxTE_RICH)
.AddTextWindow( message.Translation() );
S.SetBorder( 5 );

View File

@ -597,7 +597,7 @@ ProgressResult ExportCL::Export(AudacityProject *project,
ShuttleGui S(&dlg, eIsCreating);
S
.Style( wxTE_MULTILINE | wxTE_READONLY )
.Style( wxTE_MULTILINE | wxTE_READONLY | wxTE_RICH )
.AddTextWindow(mCmd + wxT("\n\n") + output);
S.StartHorizontalLay(wxALIGN_CENTER, false);
{