mirror of
https://git.freebsd.org/ports.git
synced 2025-06-17 02:30:44 -04:00
11 lines
597 B
C++
11 lines
597 B
C++
--- src/slic3r/GUI/PhysicalPrinterDialog.cpp.orig 2024-06-27 09:25:47 UTC
|
|
+++ src/slic3r/GUI/PhysicalPrinterDialog.cpp
|
|
@@ -606,7 +606,7 @@ void PhysicalPrinterDialog::build_printhost_settings(C
|
|
// Always fill in the "printhost_port" combo box from the config and select it.
|
|
{
|
|
Choice* choice = dynamic_cast<Choice*>(m_optgroup->get_field("printhost_port"));
|
|
- choice->set_values({ m_config->opt_string("printhost_port") });
|
|
+ choice->set_values((const std::vector<std::string>){ m_config->opt_string("printhost_port") });
|
|
choice->set_selection();
|
|
}
|
|
|