mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-01-05 14:27:42 -07:00
Merge branch 'main' into dev/bbl-network-upd
# Conflicts: # src/slic3r/GUI/Widgets/AMSControl.cpp
This commit is contained in:
commit
3f60a23718
42 changed files with 354 additions and 255 deletions
|
|
@ -535,7 +535,7 @@ void PrinterPartsDialog::set_nozzle_type(wxCommandEvent& evt)
|
|||
nozzle_diameter_checkbox->Clear();
|
||||
for (int i = 0; i < diameter_list.size(); i++)
|
||||
{
|
||||
nozzle_diameter_checkbox->Append(wxString::Format(_L("%.1f"), diameter_list[i]));
|
||||
nozzle_diameter_checkbox->Append(wxString::Format("%.1f", diameter_list[i]));
|
||||
}
|
||||
nozzle_diameter_checkbox->SetSelection(0);
|
||||
|
||||
|
|
@ -618,7 +618,7 @@ bool PrinterPartsDialog::Show(bool show)
|
|||
|
||||
for (int i = 0; i < diameter_list.size(); i++)
|
||||
{
|
||||
nozzle_diameter_checkbox->Append( wxString::Format(_L("%.1f"), diameter_list[i]));
|
||||
nozzle_diameter_checkbox->Append( wxString::Format("%.1f", diameter_list[i]));
|
||||
if (diameter_list[i] == diameter) {
|
||||
nozzle_diameter_checkbox->SetSelection(i);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue