mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
Actually execute the reverse pass in reverse
As it should. Contributes to issue CURA-5561.
This commit is contained in:
parent
5e85af30de
commit
0ad644386e
1 changed files with 1 additions and 1 deletions
|
|
@ -435,7 +435,7 @@ class CommandBuffer:
|
|||
|
||||
#Second pass: Reverse kernel.
|
||||
kernel_commands = [None, None, None]
|
||||
for cmd in self._all_commands:
|
||||
for cmd in reversed(self._all_commands):
|
||||
if cmd.estimated_exec_time_in_ms >= 0:
|
||||
continue #Not a movement command.
|
||||
kernel_commands[2] = kernel_commands[1]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue