ENH: add timelapse warning for multi-extruder printer

jira: none
Change-Id: I09a25f00eef6d3fab6ad948a13c8eb308f134dbb
(cherry picked from commit d7acee50e88812e8a0bd7b9afea7aca5d5826841)
This commit is contained in:
zhimin.zeng
2025-01-16 21:36:40 +08:00
committed by Noisyfox
parent 80cd896896
commit 00f19fcd72
7 changed files with 31 additions and 5 deletions

View File

@@ -4400,6 +4400,8 @@ wxString Plater::get_slice_warning_string(GCodeProcessorResult::SliceWarning& wa
return _L("Enabling traditional timelapse photography may cause surface imperfections. It is recommended to change to smooth mode.");
} else if (warning.msg == NOT_GENERATE_TIMELAPSE) {
return wxString();
} else if (warning.msg == SMOOTH_TIMELAPSE_WITHOUT_PRIME_TOWER) {
return _L("Smooth mode for timelapse is enabled, but the prime tower is off, which may cause print defects. Please enable the prime tower, re-slice and print again.");
}
else {
return wxString(warning.msg);