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>2020-03-02 13:33:09 +0300
committerYuSanka <yusanka@gmail.com>2020-03-02 13:33:56 +0300
commit7388947e1f775fd4debebc54dcfb97fef1909f53 (patch)
tree7ea2899b1880a03ba34c234864a38294cf6b11c9 /src/slic3r/GUI/OptionsGroup.cpp
parent11bd62a3e6887741701eb908e0fd0cc0b6afb576 (diff)
Fix of #3739 (OSX: set width of "Editing" column
to avoid a column narrowing after a recreating of an application caused by a language changing) + Fix related to a bug, reported in #3617, about wrong placement of a "Purging volumes" button translated to the some languages
Diffstat (limited to 'src/slic3r/GUI/OptionsGroup.cpp')
-rw-r--r--src/slic3r/GUI/OptionsGroup.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/slic3r/GUI/OptionsGroup.cpp b/src/slic3r/GUI/OptionsGroup.cpp
index f507f0e4a..f0b108bd7 100644
--- a/src/slic3r/GUI/OptionsGroup.cpp
+++ b/src/slic3r/GUI/OptionsGroup.cpp
@@ -129,7 +129,8 @@ void OptionsGroup::append_line(const Line& line, wxStaticText** full_Label/* = n
m_options.emplace(opt.opt_id, opt);
// Set sidetext width for a better alignment of options in line
- if (option_set.size() > 1) {
+ // "m_show_modified_btns==true" means that options groups are in tabs
+ if (option_set.size() > 1 && m_show_modified_btns) {
sidetext_width = Field::def_width_thinner();
/* Temporary commented till UI-review will be completed
if (m_show_modified_btns) // means that options groups are in tabs