mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-16 16:10:06 +02:00
Make some more text windows read-only
This commit is contained in:
parent
33bd2a4d93
commit
8c4bc6c91f
@ -216,6 +216,7 @@ void BenchmarkDialog::MakeBenchmarkDialog()
|
|||||||
mText = S.Id(StaticTextID)
|
mText = S.Id(StaticTextID)
|
||||||
/* i18n-hint noun */
|
/* i18n-hint noun */
|
||||||
.Name(XO("Output"))
|
.Name(XO("Output"))
|
||||||
|
.Style( wxTE_MULTILINE | wxTE_READONLY )
|
||||||
.MinSize( { 500, 200 } )
|
.MinSize( { 500, 200 } )
|
||||||
.AddTextWindow(wxT(""));
|
.AddTextWindow(wxT(""));
|
||||||
|
|
||||||
|
@ -538,7 +538,9 @@ ProgressResult ExportCL::Export(AudacityProject *project,
|
|||||||
dlg.SetName();
|
dlg.SetName();
|
||||||
|
|
||||||
ShuttleGui S(&dlg, eIsCreating);
|
ShuttleGui S(&dlg, eIsCreating);
|
||||||
S.AddTextWindow(cmd + wxT("\n\n") + output);
|
S
|
||||||
|
.Style( wxTE_MULTILINE | wxTE_READONLY )
|
||||||
|
.AddTextWindow(cmd + wxT("\n\n") + output);
|
||||||
S.StartHorizontalLay(wxALIGN_CENTER, false);
|
S.StartHorizontalLay(wxALIGN_CENTER, false);
|
||||||
{
|
{
|
||||||
S.Id(wxID_OK).AddButton(XO("&OK"), wxALIGN_CENTER, true);
|
S.Id(wxID_OK).AddButton(XO("&OK"), wxALIGN_CENTER, true);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user