From d4e5a61efd0fae1ae8fecb23a814cde7d2cca0c0 Mon Sep 17 00:00:00 2001 From: John Oleksowicz <8656640+johnolek@users.noreply.github.com> Date: Tue, 1 Apr 2025 21:11:22 -0500 Subject: [PATCH] Fix PCTG calibration temperatures (#9111) It looks like start and end values are swapped. Start needs to be greater than end. If you try to hit "Ok" for the default values, it results in this error: ``` Please input valid values: Start temp: <= 350 End temp: >= 170 Start temp > End temp + 5) ``` --- src/slic3r/GUI/calib_dlg.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/calib_dlg.cpp b/src/slic3r/GUI/calib_dlg.cpp index 529a1319c9..615114b413 100644 --- a/src/slic3r/GUI/calib_dlg.cpp +++ b/src/slic3r/GUI/calib_dlg.cpp @@ -432,8 +432,8 @@ void Temp_Calibration_Dlg::on_filament_type_changed(wxCommandEvent& event) { end = 230; break; case tPCTG: - start = 240; - end = 280; + start = 280; + end = 240; break; case tTPU: start = 240;