From 375c4369ae1d28a311ddfae4c646625c89d86cd4 Mon Sep 17 00:00:00 2001 From: supermerill Date: Sun, 7 Nov 2021 20:42:16 +0100 Subject: [PATCH] =?UTF-8?q?Typo=20in=20Retract=20Calibration=20for=203x5?= =?UTF-8?q?=C2=B0=20#1749=20by=20@kmkroski?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/slic3r/GUI/CalibrationRetractionDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/CalibrationRetractionDialog.cpp b/src/slic3r/GUI/CalibrationRetractionDialog.cpp index 99c45e3a3..c1299e948 100644 --- a/src/slic3r/GUI/CalibrationRetractionDialog.cpp +++ b/src/slic3r/GUI/CalibrationRetractionDialog.cpp @@ -44,7 +44,7 @@ void CalibrationRetractionDialog::create_buttons(wxStdDialogButtonSizer* buttons auto size = wxSize(4 * em_unit(), wxDefaultCoord); temp_start = new wxTextCtrl(this, wxID_ANY, std::to_string(temp), wxDefaultPosition, size); temp_start->SetToolTip(_L("Note that only Multiple of 5 can be engraved in the part")); - wxString choices_decr[] = { _L("one test"),_L("2x10°"),_L("3x10°"), _L("4x10°"), _L("3x50°"), _L("5x5°") }; + wxString choices_decr[] = { _L("one test"),_L("2x10°"),_L("3x10°"), _L("4x10°"), _L("3x5°"), _L("5x5°") }; decr_temp = new wxComboBox(this, wxID_ANY, wxString{ "current" }, wxDefaultPosition, wxDefaultSize, 6, choices_decr); decr_temp->SetToolTip(_L("Select the number tower to print, and by how many degrees C to decrease each time.")); decr_temp->SetSelection(0);