Fixed definition of psSlicingFinished to fix notification updates
after the slicing finishes.
This commit is contained in:
parent
a5961ef981
commit
70e44c3e8e
1 changed files with 7 additions and 6 deletions
|
@ -37,17 +37,18 @@ namespace FillAdaptive {
|
||||||
};
|
};
|
||||||
|
|
||||||
// Print step IDs for keeping track of the print state.
|
// Print step IDs for keeping track of the print state.
|
||||||
|
// The Print steps are applied in this order.
|
||||||
enum PrintStep {
|
enum PrintStep {
|
||||||
psSkirt,
|
|
||||||
psBrim,
|
|
||||||
// Synonym for the last step before the Wipe Tower / Tool Ordering, for the G-code preview slider to understand that
|
|
||||||
// all the extrusions are there for the layer slider to add color changes etc.
|
|
||||||
psExtrusionPaths = psBrim,
|
|
||||||
psWipeTower,
|
psWipeTower,
|
||||||
|
// Ordering of the tools on PrintObjects for a multi-material print.
|
||||||
// psToolOrdering is a synonym to psWipeTower, as the Wipe Tower calculates and modifies the ToolOrdering,
|
// psToolOrdering is a synonym to psWipeTower, as the Wipe Tower calculates and modifies the ToolOrdering,
|
||||||
// while if printing without the Wipe Tower, the ToolOrdering is calculated as well.
|
// while if printing without the Wipe Tower, the ToolOrdering is calculated as well.
|
||||||
psToolOrdering = psWipeTower,
|
psToolOrdering = psWipeTower,
|
||||||
psSlicingFinished = psToolOrdering,
|
psSkirt,
|
||||||
|
psBrim,
|
||||||
|
// Last step before G-code export, after this step is finished, the initial extrusion path preview
|
||||||
|
// should be refreshed.
|
||||||
|
psSlicingFinished = psBrim,
|
||||||
psGCodeExport,
|
psGCodeExport,
|
||||||
psCount,
|
psCount,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue