mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-03-17 16:55:41 -06:00
FIX: modify cali text and picture
jira: STUDIO-8778 STUDIO-8824 Change-Id: Iecb0a52a100c3f0765e5eda07e0ed50226490e42 (cherry picked from commit 16791c72d62eabef96011ddc117b329385c5aa68)
This commit is contained in:
parent
88938ad5dd
commit
e0e6f77d7d
7 changed files with 39 additions and 12 deletions
|
|
@ -3529,7 +3529,12 @@ void StatusPanel::update_subtask(MachineObject *obj)
|
|||
int height = m_project_task_panel->get_bitmap_thumbnail()->GetSize().y;
|
||||
if (m_calib_method == CALI_METHOD_AUTO) {
|
||||
if (m_calib_mode == CalibMode::Calib_PA_Line) {
|
||||
png_path = (boost::format("%1%/images/fd_calibration_auto.png") % resources_dir()).str();
|
||||
if (obj->is_multi_extruders())
|
||||
png_path = (boost::format("%1%/images/fd_calibration_auto_multi_extruders.png") % resources_dir()).str();
|
||||
else if (obj->get_printer_arch() == PrinterArch::ARCH_I3)
|
||||
png_path = (boost::format("%1%/images/fd_calibration_auto_i3.png") % resources_dir()).str();
|
||||
else
|
||||
png_path = (boost::format("%1%/images/fd_calibration_auto.png") % resources_dir()).str();
|
||||
}
|
||||
else if (m_calib_mode == CalibMode::Calib_Flow_Rate) {
|
||||
png_path = (boost::format("%1%/images/flow_rate_calibration_auto.png") % resources_dir()).str();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue