mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-16 18:12:10 +00:00
ENH: add timelapse warning for multi-extruder printer
jira: none Change-Id: I09a25f00eef6d3fab6ad948a13c8eb308f134dbb (cherry picked from commit d7acee50e88812e8a0bd7b9afea7aca5d5826841)
This commit is contained in:
@@ -1593,7 +1593,8 @@ void Tab::on_value_change(const std::string& opt_key, const boost::any& value)
|
||||
|
||||
if (opt_key == "print_sequence" && m_config->opt_enum<PrintSequence>("print_sequence") == PrintSequence::ByObject) {
|
||||
auto printer_structure_opt = wxGetApp().preset_bundle->printers.get_edited_preset().config.option<ConfigOptionEnum<PrinterStructure>>("printer_structure");
|
||||
if (printer_structure_opt && printer_structure_opt->value == PrinterStructure::psI3) {
|
||||
if ((printer_structure_opt && printer_structure_opt->value == PrinterStructure::psI3)
|
||||
|| m_preset_bundle->get_printer_extruder_count() == 2) {
|
||||
wxString msg_text = _(L("Timelapse is not supported because Print sequence is set to \"By object\"."));
|
||||
msg_text += "\n\n" + _(L("Still print by object?"));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user