wxNullColour is used
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27870
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
return false ;
wxBrush brush ;
return false ;
wxBrush brush ;
- if ( col == wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE) )
+ wxColour newCol(GetBackgroundColour());
+ if ( newCol == wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE) )
{
brush.MacSetTheme( kThemeBrushDocumentWindowBackground ) ;
}
{
brush.MacSetTheme( kThemeBrushDocumentWindowBackground ) ;
}
- else if ( col == wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE ) )
+ else if ( newCol == wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE ) )
{
brush.MacSetTheme( kThemeBrushDialogBackgroundActive ) ;
}
else
{
{
brush.MacSetTheme( kThemeBrushDialogBackgroundActive ) ;
}
else
{
- brush.SetColour( col ) ;
+ brush.SetColour( newCol ) ;
}
MacSetBackgroundBrush( brush ) ;
}
MacSetBackgroundBrush( brush ) ;