Properties: fix caption text in dark mode on GTK

This commit is contained in:
Jon Evans 2022-12-02 22:43:11 -05:00
parent 4134db3c47
commit 8f39dd69be
1 changed files with 5 additions and 0 deletions

View File

@ -62,6 +62,11 @@ PROPERTIES_PANEL::PROPERTIES_PANEL( wxWindow* aParent, EDA_BASE_FRAME* aFrame )
m_grid->SetCellDisabledTextColour( wxSystemSettings::GetColour( wxSYS_COLOUR_GRAYTEXT ) );
#ifdef __WXGTK__
// Needed for dark mode, on wx 3.0 at least.
m_grid->SetCaptionTextColour( wxSystemSettings::GetColour( wxSYS_COLOUR_CAPTIONTEXT ) );
#endif
SetSizer( mainSizer );
Layout();