mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-07 23:17:35 -06:00
Fix utf8 string on physical printer dialog (#4765)
This commit is contained in:
parent
6826c38962
commit
ed14598eb1
1 changed files with 1 additions and 1 deletions
|
@ -292,7 +292,7 @@ void PhysicalPrinterDialog::build_printhost_settings(ConfigOptionsGroup* m_optgr
|
|||
Line cafile_hint{ "", "" };
|
||||
cafile_hint.full_width = 1;
|
||||
cafile_hint.widget = [ca_file_hint](wxWindow* parent) {
|
||||
auto txt = new wxStaticText(parent, wxID_ANY, ca_file_hint);
|
||||
auto txt = new wxStaticText(parent, wxID_ANY, from_u8(ca_file_hint));
|
||||
auto sizer = new wxBoxSizer(wxHORIZONTAL);
|
||||
sizer->Add(txt);
|
||||
return sizer;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue