X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1ef49ab576d21e0428eacf26c98a2f0fb62cb94d..fdf7514a009227ebf09cf8e184b3d96aa33eb026:/src/generic/grid.cpp diff --git a/src/generic/grid.cpp b/src/generic/grid.cpp index ea0184e2d0..f38e12eb13 100644 --- a/src/generic/grid.cpp +++ b/src/generic/grid.cpp @@ -3990,15 +3990,15 @@ void wxGrid::Create() wxColour lfg = wxSystemSettings::GetColour( wxSYS_COLOUR_WINDOWTEXT ); wxColour lbg = wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE ); #endif - m_cornerLabelWin->SetDefaultForegroundColour(lfg); - m_cornerLabelWin->SetDefaultBackgroundColour(lbg); - m_rowLabelWin->SetDefaultForegroundColour(lfg); - m_rowLabelWin->SetDefaultBackgroundColour(lbg); - m_colLabelWin->SetDefaultForegroundColour(lfg); - m_colLabelWin->SetDefaultBackgroundColour(lbg); - - m_gridWin->SetDefaultForegroundColour(gfg); - m_gridWin->SetDefaultBackgroundColour(gbg); + m_cornerLabelWin->SetOwnForegroundColour(lfg); + m_cornerLabelWin->SetOwnBackgroundColour(lbg); + m_rowLabelWin->SetOwnForegroundColour(lfg); + m_rowLabelWin->SetOwnBackgroundColour(lbg); + m_colLabelWin->SetOwnForegroundColour(lfg); + m_colLabelWin->SetOwnBackgroundColour(lbg); + + m_gridWin->SetOwnForegroundColour(gfg); + m_gridWin->SetOwnBackgroundColour(gbg); Init(); }