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:
parent
38da22c18b
commit
9f5177056d
@ -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);
|
||||
|
@ -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(""));
|
||||
|
||||
|
@ -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 );
|
||||
|
@ -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);
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user