summaryrefslogtreecommitdiffstats
path: root/src/Authoring/Qt3DStudio/Palettes/Action/HandlerPropertyBaseXY.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/Authoring/Qt3DStudio/Palettes/Action/HandlerPropertyBaseXY.qml')
-rw-r--r--src/Authoring/Qt3DStudio/Palettes/Action/HandlerPropertyBaseXY.qml6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Authoring/Qt3DStudio/Palettes/Action/HandlerPropertyBaseXY.qml b/src/Authoring/Qt3DStudio/Palettes/Action/HandlerPropertyBaseXY.qml
index 4406703f..e22bda8c 100644
--- a/src/Authoring/Qt3DStudio/Palettes/Action/HandlerPropertyBaseXY.qml
+++ b/src/Authoring/Qt3DStudio/Palettes/Action/HandlerPropertyBaseXY.qml
@@ -44,6 +44,8 @@ RowLayout {
signal editingFinished
signal previewValueChanged
+ signal triggerUndo
+ signal triggerRedo
spacing: 0
@@ -59,6 +61,8 @@ RowLayout {
decimalValue: numberOfDecimal
onEditingFinished: root.editingFinished()
onPreviewValueChanged: root.previewValueChanged()
+ onTriggerUndo: root.triggerUndo()
+ onTriggerRedo: root.triggerRedo()
}
Item { width: 20 }
@@ -75,6 +79,8 @@ RowLayout {
decimalValue: numberOfDecimal
onEditingFinished: root.editingFinished()
onPreviewValueChanged: root.previewValueChanged()
+ onTriggerUndo: root.triggerUndo()
+ onTriggerRedo: root.triggerRedo()
}
}