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

Red to Medium background.

This commit is contained in:
James Crook 2016-06-24 09:46:38 +01:00
parent da86066aee
commit 8927fd37df
2 changed files with 3 additions and 3 deletions

View File

@ -827,7 +827,7 @@ AudacityProject::AudacityProject(wxWindow * parent, wxWindowID id,
mViewInfo(0.0, 1.0, ZoomInfo::GetDefaultZoom()) mViewInfo(0.0, 1.0, ZoomInfo::GetDefaultZoom())
{ {
SetBackgroundColour(*wxRED); SetBackgroundColour(theTheme.Colour( clrMedium ));
// Note that the first field of the status bar is a dummy, and it's width is set // Note that the first field of the status bar is a dummy, and it's width is set
// to zero latter in the code. This field is needed for wxWidgets 2.8.12 because // to zero latter in the code. This field is needed for wxWidgets 2.8.12 because
// if you move to the menu bar, the first field of the menu bar is cleared, which // if you move to the menu bar, the first field of the menu bar is cleared, which
@ -929,7 +929,7 @@ AudacityProject::AudacityProject(wxWindow * parent, wxWindowID id,
//pPage->SetBackgroundColour( theTheme.Colour( clrDark )); //pPage->SetBackgroundColour( theTheme.Colour( clrDark ));
#endif #endif
pPage->SetBackgroundColour(*wxRED); pPage->SetBackgroundColour(theTheme.Colour( clrMedium ));
wxBoxSizer *bs; wxBoxSizer *bs;
{ {

View File

@ -355,7 +355,7 @@ ToolDock::ToolDock( ToolManager *manager, wxWindow *parent, int dockid ):
// Init // Init
mManager = manager; mManager = manager;
SetBackgroundColour(*wxRED); SetBackgroundColour(theTheme.Colour( clrMedium ));
// Use for testing gaps // Use for testing gaps
// SetOwnBackgroundColour( wxColour( 255, 0, 0 ) ); // SetOwnBackgroundColour( wxColour( 255, 0, 0 ) );
} }