FIX: modify cali thumbnail for O1S

jira: none
Change-Id: I7e255ce35e52fcf4a5e5d840edac24c339373454
(cherry picked from commit 46f09b97eaaa56da135ed4128d49e9d6927ec9cf)
(cherry picked from commit 89f5b517989a56fc77451b349e0a0b254c2117ee)
This commit is contained in:
zhimin.zeng 2025-06-09 21:15:51 +08:00 committed by Noisyfox
parent c891884ca2
commit eb88d81362
3 changed files with 4 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

View file

@ -119,6 +119,8 @@ void CalibrationCaliPage::set_cali_img()
}
else if (curr_obj->get_printer_arch() == PrinterArch::ARCH_I3) {
m_picture_panel->set_bmp(ScalableBitmap(this, "fd_calibration_auto_i3", 400));
} else if (curr_obj->is_series_o()) {
m_picture_panel->set_bmp(ScalableBitmap(this, "fd_calibration_auto_single_o", 400));
}
else {
m_picture_panel->set_bmp(ScalableBitmap(this, "fd_calibration_auto", 400));

View file

@ -3571,6 +3571,8 @@ void StatusPanel::update_subtask(MachineObject *obj)
}
else if (obj->get_printer_arch() == PrinterArch::ARCH_I3)
png_path = (boost::format("%1%/images/fd_calibration_auto_i3.png") % resources_dir()).str();
else if (obj->is_series_o())
png_path = (boost::format("%1%/images/fd_calibration_auto_single_o.png") % resources_dir()).str();
else
png_path = (boost::format("%1%/images/fd_calibration_auto.png") % resources_dir()).str();
}