mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-08 07:27:41 -06:00
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) ```
This commit is contained in:
parent
60dac5f1f4
commit
d4e5a61efd
1 changed files with 2 additions and 2 deletions
|
@ -432,8 +432,8 @@ void Temp_Calibration_Dlg::on_filament_type_changed(wxCommandEvent& event) {
|
||||||
end = 230;
|
end = 230;
|
||||||
break;
|
break;
|
||||||
case tPCTG:
|
case tPCTG:
|
||||||
start = 240;
|
start = 280;
|
||||||
end = 280;
|
end = 240;
|
||||||
break;
|
break;
|
||||||
case tTPU:
|
case tTPU:
|
||||||
start = 240;
|
start = 240;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue