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-02-04 14:07:15 +0300
committerYuSanka <yusanka@gmail.com>2019-02-04 14:07:15 +0300
commitb7f24aebe34ec9b0d7fb054906cc3f0cb859a96e (patch)
treee5e36b9ea146f96e163b3c417f070cd8b4cb4376 /src/slic3r/GUI/OptionsGroup.hpp
parente2b8c3e33c0c7e2ade58170403c289b454be4051 (diff)
Fixed rounding of numbers for the controls width (Try to fix controls flashing on HDPI/linux)
Diffstat (limited to 'src/slic3r/GUI/OptionsGroup.hpp')
-rw-r--r--src/slic3r/GUI/OptionsGroup.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/OptionsGroup.hpp b/src/slic3r/GUI/OptionsGroup.hpp
index 93151f33e..ac355bdf3 100644
--- a/src/slic3r/GUI/OptionsGroup.hpp
+++ b/src/slic3r/GUI/OptionsGroup.hpp
@@ -82,7 +82,7 @@ class OptionsGroup {
public:
const bool staticbox {true};
const wxString title {wxString("")};
- size_t label_width {200};
+ size_t label_width = 15 * wxGetApp().em_unit();// {200};
wxSizer* sizer {nullptr};
column_t extra_column {nullptr};
t_change m_on_change { nullptr };