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-03-27 15:18:27 +0300
committerYuSanka <yusanka@gmail.com>2019-03-27 15:19:27 +0300
commit87febaacc0bdc8bf4c5af7aaaaa59034ab8544c0 (patch)
treea485cda808587c86979137ef0489d4ff2174f3b7 /src/slic3r/GUI/GUI_ObjectSettings.cpp
parent734d57a714ebe33d221fd331ba5d54e8574f05a4 (diff)
Fix of #2014
Diffstat (limited to 'src/slic3r/GUI/GUI_ObjectSettings.cpp')
-rw-r--r--src/slic3r/GUI/GUI_ObjectSettings.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/slic3r/GUI/GUI_ObjectSettings.cpp b/src/slic3r/GUI/GUI_ObjectSettings.cpp
index dbfdb8e6c..4c0879ad3 100644
--- a/src/slic3r/GUI/GUI_ObjectSettings.cpp
+++ b/src/slic3r/GUI/GUI_ObjectSettings.cpp
@@ -123,8 +123,8 @@ void ObjectSettings::update_settings_list()
continue;
auto optgroup = std::make_shared<ConfigOptionsGroup>(m_og->ctrl_parent(), cat.first, config, false, extra_column);
- optgroup->label_width = 15 * wxGetApp().em_unit();//150;
- optgroup->sidetext_width = 7 * wxGetApp().em_unit();//70;
+ optgroup->label_width = 15 * wxGetApp().em_unit();
+ optgroup->sidetext_width = 5.5 * wxGetApp().em_unit();
optgroup->m_on_change = [](const t_config_option_key& opt_id, const boost::any& value) {
wxGetApp().obj_list()->part_settings_changed(); };
@@ -134,7 +134,7 @@ void ObjectSettings::update_settings_list()
if (opt == "extruder")
continue;
Option option = optgroup->get_option(opt);
- option.opt.width = 7 * wxGetApp().em_unit();//70;
+ option.opt.width = 12 * wxGetApp().em_unit();
optgroup->append_single_option_line(option);
}
optgroup->reload_config();