mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-16 10:02:12 +00:00
FIX:changed top menu bar color on macos
Change-Id: I276aab27c2c089ad322dc5cb2f6206dccb3e494d
This commit is contained in:
@@ -20,7 +20,15 @@ ButtonsListCtrl::ButtonsListCtrl(wxWindow *parent, wxBoxSizer* side_tools) :
|
||||
#ifdef __WINDOWS__
|
||||
SetDoubleBuffered(true);
|
||||
#endif //__WINDOWS__
|
||||
wxColour default_btn_bg = wxColour("#3B4446"); // Gradient #414B4E
|
||||
|
||||
wxColour default_btn_bg;
|
||||
#ifdef __APPLE__
|
||||
default_btn_bg = wxColour("#3B4446"); // Gradient #414B4E
|
||||
#else
|
||||
default_btn_bg = wxColour("#2D2D30"); // Gradient #414B4E
|
||||
#endif
|
||||
|
||||
|
||||
SetBackgroundColour(default_btn_bg);
|
||||
|
||||
int em = em_unit(this);// Slic3r::GUI::wxGetApp().em_unit();
|
||||
|
||||
Reference in New Issue
Block a user