ENH:increase N1 camera busy status

jira:STUDIO-3982

Change-Id: I0272bbc28359b2e15d6c1f81ef9da825b3764b1a
(cherry picked from commit 357ecdcc1444cbc98d2fcd11faea519d53ad52b8)
This commit is contained in:
tao wang 2023-08-17 14:55:30 +08:00 committed by Lane.Wei
parent 0bba850e59
commit 3992c14ad6

View file

@ -2700,7 +2700,7 @@ bool MachineObject::is_support_print_with_timelapse()
bool MachineObject::is_camera_busy_off()
{
if (printer_type == "C11" || printer_type == "C12")
if (printer_type == "C11" || printer_type == "C12" || printer_type == "N1")
return is_in_prepare() || is_in_upgrading();
return false;
}