mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 07:03:56 -06:00
Merge branch 'main' into Issue-4835-allow-to-set-print-sequence-manually
This commit is contained in:
commit
355f24e29f
468 changed files with 6280 additions and 711 deletions
|
@ -112,7 +112,6 @@ Item
|
|||
Action
|
||||
{
|
||||
id: exitFullScreenAction
|
||||
shortcut: StandardKey.Cancel
|
||||
text: catalog.i18nc("@action:inmenu", "Exit Full Screen")
|
||||
icon.name: "view-fullscreen"
|
||||
}
|
||||
|
@ -123,8 +122,8 @@ Item
|
|||
text: catalog.i18nc("@action:inmenu menubar:edit", "&Undo")
|
||||
icon.name: "edit-undo"
|
||||
shortcut: StandardKey.Undo
|
||||
onTriggered: UM.OperationStack.undo()
|
||||
enabled: UM.OperationStack.canUndo
|
||||
onTriggered: CuraActions.undo()
|
||||
enabled: CuraActions.canUndo
|
||||
}
|
||||
|
||||
Action
|
||||
|
@ -133,8 +132,8 @@ Item
|
|||
text: catalog.i18nc("@action:inmenu menubar:edit", "&Redo")
|
||||
icon.name: "edit-redo"
|
||||
shortcut: StandardKey.Redo
|
||||
onTriggered: UM.OperationStack.redo()
|
||||
enabled: UM.OperationStack.canRedo
|
||||
onTriggered: CuraActions.redo()
|
||||
enabled: CuraActions.canRedo
|
||||
}
|
||||
|
||||
Action
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue