ENH: use the en style for PrintOptionItem

jira: [STUDIO-13009]
Change-Id: Ie05b683adf28b2ade4f7333678b086e328d7e525
(cherry picked from commit 360c92dfac7a77e14537e8c226eed193f14ea27c)
This commit is contained in:
xin.zhang 2025-06-30 16:55:00 +08:00 committed by Noisyfox
parent 025294894a
commit d4115e0837

View file

@ -87,12 +87,13 @@ SelectMachineDialog::SelectMachineDialog(Plater *plater)
SetDoubleBuffered(true);
#endif //__WINDOWS__
ops_auto.push_back(POItem{"auto", _L("Auto")});
ops_auto.push_back(POItem{"on", _L("On")});
ops_auto.push_back(POItem{"off", _L("Off")});
ops_no_auto.push_back(POItem{"on", _L("On")});
ops_no_auto.push_back(POItem{"off", _L("Off")});
ops_auto.push_back(POItem{"auto", "Auto"});
ops_auto.push_back(POItem{"on", "On"});
ops_auto.push_back(POItem{"off", "Off"});
ops_no_auto.push_back(POItem{"on", "On"});
ops_no_auto.push_back(POItem{"off", "Off"});
// bind
Bind(wxEVT_CLOSE_WINDOW, &SelectMachineDialog::on_cancel, this);