mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-01-08 15:57:47 -07:00
FIX: logic error in filament change
jira:NEW Signed-off-by: xun.zhang <xun.zhang@bambulab.com> Change-Id: I7e2b1333d4b82e4495375fcf4daec3aea08be445 (cherry picked from commit 7128e2925a7b75c6e1bee76b739cef8c4fd46c89)
This commit is contained in:
parent
f52dd41b23
commit
400ff4d007
1 changed files with 1 additions and 1 deletions
|
|
@ -1069,7 +1069,7 @@ void ToolOrdering::reorder_extruders_for_minimum_flush_volume()
|
|||
std::vector<int>filament_maps(number_of_extruders, 0);
|
||||
if (nozzle_nums > 1) {
|
||||
filament_maps = m_print->get_filament_maps();
|
||||
if (print_config->print_sequence != PrintSequence::ByObject && m_print->objects().size() == 1) {
|
||||
if (print_config->print_sequence != PrintSequence::ByObject || m_print->objects().size() == 1) {
|
||||
const PrintConfig *print_config = m_print_config_ptr;
|
||||
if (!print_config && m_print_object_ptr) {
|
||||
print_config = &(m_print_object_ptr->print()->config());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue