mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 08:09:00 +08:00
fix for proper path for CuraAction undo redo
CURA-7812
This commit is contained in:
parent
676099ccf6
commit
0ddf92ce62
@ -120,8 +120,8 @@ Item
|
|||||||
text: catalog.i18nc("@action:inmenu menubar:edit", "&Undo")
|
text: catalog.i18nc("@action:inmenu menubar:edit", "&Undo")
|
||||||
icon.name: "edit-undo"
|
icon.name: "edit-undo"
|
||||||
shortcut: StandardKey.Undo
|
shortcut: StandardKey.Undo
|
||||||
onTriggered: UM.CuraActions.undo()
|
onTriggered: CuraActions.undo()
|
||||||
enabled: UM.CuraActions.canUndo
|
enabled: CuraActions.canUndo
|
||||||
}
|
}
|
||||||
|
|
||||||
Action
|
Action
|
||||||
@ -130,8 +130,8 @@ Item
|
|||||||
text: catalog.i18nc("@action:inmenu menubar:edit", "&Redo")
|
text: catalog.i18nc("@action:inmenu menubar:edit", "&Redo")
|
||||||
icon.name: "edit-redo"
|
icon.name: "edit-redo"
|
||||||
shortcut: StandardKey.Redo
|
shortcut: StandardKey.Redo
|
||||||
onTriggered: UM.CuraActions.redo()
|
onTriggered: CuraActions.redo()
|
||||||
enabled: UM.CuraActions.canRedo
|
enabled: CuraActions.canRedo
|
||||||
}
|
}
|
||||||
|
|
||||||
Action
|
Action
|
||||||
|
Loading…
x
Reference in New Issue
Block a user