mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 15:13:56 -06:00
Allow to set print sequence manually
This commit is contained in:
parent
6aaee84b95
commit
2b05a370ca
53 changed files with 1021 additions and 88 deletions
|
@ -78,6 +78,19 @@ Cura.Menu
|
|||
Cura.MenuItem { action: Cura.Actions.mergeObjects }
|
||||
Cura.MenuItem { action: Cura.Actions.unGroupObjects }
|
||||
|
||||
// Edit print sequence actions
|
||||
Cura.MenuSeparator { visible: PrintOrderManager.shouldShowEditPrintOrderActions }
|
||||
Cura.MenuItem
|
||||
{
|
||||
action: Cura.Actions.printObjectBeforePrevious
|
||||
visible: PrintOrderManager.shouldShowEditPrintOrderActions
|
||||
}
|
||||
Cura.MenuItem
|
||||
{
|
||||
action: Cura.Actions.printObjectAfterNext
|
||||
visible: PrintOrderManager.shouldShowEditPrintOrderActions
|
||||
}
|
||||
|
||||
Connections
|
||||
{
|
||||
target: UM.Controller
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue