1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-23 07:58:05 +02:00

Fix background colour of Prefs

On Linux, it is not necessary to explicitly set the background colour
here, but left a comment in case it is required on other platforms.
This commit is contained in:
Steve Daulton 2018-04-08 18:18:54 +01:00
parent b36482d649
commit 564e840d54

View File

@ -814,11 +814,7 @@ wxScrolledWindow * ShuttleGuiBase::StartScroller(int iStyle)
}
else
{
mpWind->SetBackgroundColour(
iStyle==0
? wxColour( 245,244,240) :
wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE)
);
// mpWind->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_MENUBAR));
UpdateSizers(); // adds window in to current sizer.
}