mirror of
https://git.mirrors.martin98.com/https://github.com/SoftFever/OrcaSlicer.git
synced 2025-08-06 04:46:59 +08:00
FIX: X1C should not litmit the k value size
github: 4168 Change-Id: Iaf0a5a2334debda3de41192b4ea17ebd0c0a3e09
This commit is contained in:
parent
13c6914c64
commit
0b9a6b5fe4
@ -659,7 +659,7 @@ void PressureAdvanceWizard::on_cali_start()
|
||||
cali_page->set_pa_cali_image(int(pa_cali_method));
|
||||
curr_obj->manual_pa_cali_method = pa_cali_method;
|
||||
|
||||
if (curr_obj->pa_calib_tab.size() >= MAX_PA_HISTORY_RESULTS_NUMS) {
|
||||
if (curr_obj->get_printer_series() != PrinterSeries::SERIES_X1 && curr_obj->pa_calib_tab.size() >= MAX_PA_HISTORY_RESULTS_NUMS) {
|
||||
MessageDialog msg_dlg(nullptr, wxString::Format(_L("This machine type can only hold 16 history results per nozzle. "
|
||||
"You can delete the existing historical results and then start calibration. "
|
||||
"Or you can continue the calibration, but you cannot create new calibration historical results. \n"
|
||||
|
Loading…
x
Reference in New Issue
Block a user