1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-01 16:39:30 +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())
{
SetBackgroundColour(*wxRED);
SetBackgroundColour(theTheme.Colour( clrMedium ));
// 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
// 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 ));
#endif
pPage->SetBackgroundColour(*wxRED);
pPage->SetBackgroundColour(theTheme.Colour( clrMedium ));
wxBoxSizer *bs;
{

View File

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