Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuSanka <yusanka@gmail.com>2019-11-12 15:54:36 +0300
committerYuSanka <yusanka@gmail.com>2019-11-12 15:54:36 +0300
commit050a9adf36bb85220f3e3bdee59c399bf495c85a (patch)
tree688f14c3946811ce01172d38403f1d60812c89fe /src/slic3r/GUI/GUI_ObjectManipulation.cpp
parent0c4507141a6b15968ec3a40af035d28eb0110db4 (diff)
OSX issue: Fix Background drawing for some of controls in Dark mode
Diffstat (limited to 'src/slic3r/GUI/GUI_ObjectManipulation.cpp')
-rw-r--r--src/slic3r/GUI/GUI_ObjectManipulation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/GUI_ObjectManipulation.cpp b/src/slic3r/GUI/GUI_ObjectManipulation.cpp
index 4ecab8a0f..937e3dbdc 100644
--- a/src/slic3r/GUI/GUI_ObjectManipulation.cpp
+++ b/src/slic3r/GUI/GUI_ObjectManipulation.cpp
@@ -57,7 +57,7 @@ static wxBitmapComboBox* create_word_local_combo(wxWindow *parent)
#endif //__WXOSX__
temp->SetFont(Slic3r::GUI::wxGetApp().normal_font());
- temp->SetBackgroundStyle(wxBG_STYLE_PAINT);
+ if (!wxOSX) temp->SetBackgroundStyle(wxBG_STYLE_PAINT);
temp->Append(_(L("World coordinates")));
temp->Append(_(L("Local coordinates")));