UndoAction.qml 418 B

1234567891011121314151617
  1. // Copyright (C) 2025 The Qt Company Ltd.
  2. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
  3. import QtQuick
  4. import QtQuick.Templates as T
  5. T.Action {
  6. text: qsTr("Undo")
  7. icon.name: "edit-undo"
  8. icon.width: 24
  9. icon.height: 24
  10. shortcut: StandardKey.Undo
  11. enabled: editor.canUndo
  12. onTriggered: editor.undo()
  13. required property Item editor
  14. }