Linux specific: Fixed background color of the Settings Tabs

This commit is contained in:
YuSanka 2024-03-01 10:28:17 +01:00 committed by David Kocik
parent 9f76f9051e
commit 9619999c70

View File

@ -89,6 +89,8 @@ Tab::Tab(wxBookCtrlBase* parent, const wxString& title, Preset::Type type) :
wxGetApp().UpdateDarkUI(this); wxGetApp().UpdateDarkUI(this);
#elif __WXOSX__ #elif __WXOSX__
SetBackgroundColour(parent->GetBackgroundColour()); SetBackgroundColour(parent->GetBackgroundColour());
#elif __WXGTK3__
SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
#endif #endif
m_compatible_printers.type = Preset::TYPE_PRINTER; m_compatible_printers.type = Preset::TYPE_PRINTER;