update slic3r

This commit is contained in:
QIDI TECH
2024-11-28 15:19:12 +08:00
parent a26696f35e
commit 7eb6543991
196 changed files with 18701 additions and 3803 deletions

View File

@@ -132,6 +132,8 @@ PhysicalPrinterDialog::PhysicalPrinterDialog(wxWindow* parent, wxString printer_
m_config->set_key_value("printhost_apikey", new ConfigOptionString(""));
}
m_optgroup = new ConfigOptionsGroup(this, _L("Print Host upload"), m_config);
//y47
m_optgroup->set_label_width(15);
auto button_sizer = new wxBoxSizer(wxHORIZONTAL);
@@ -250,17 +252,17 @@ void PhysicalPrinterDialog::build_printhost_settings(ConfigOptionsGroup* m_optgr
// Set a wider width for a better alignment
Option option = m_optgroup->get_option("print_host");
// option.opt.width = Field::def_width_wider();
// y21
option.opt.width = 15;
// 47
option.opt.width = 20;
Line host_line = m_optgroup->create_single_option_line(option);
host_line.append_widget(printhost_browse);
host_line.append_widget(print_host_test);
m_optgroup->append_line(host_line);
//y40
//y47
option = m_optgroup->get_option("printhost_apikey");
option.opt.width = 15;
option.opt.width = 20;
m_optgroup->append_single_option_line(option);
m_optgroup->activate();