diff --git a/UM/Qt/qml/UM/MenuItem.qml b/UM/Qt/qml/UM/MenuItem.qml index 6c8035dc6..d4155779c 100644 --- a/UM/Qt/qml/UM/MenuItem.qml +++ b/UM/Qt/qml/UM/MenuItem.qml @@ -25,7 +25,7 @@ MenuItem enabled: root.action == null && root.enabled onActivated: root.triggered() context: Qt.ApplicationShortcut - sequence: root.action != null ? root.action.shortcut: null + sequences: [root.action != null ? root.action.shortcut: null] } // Workaround for menu items in controls not supporting mnemonic shortcuts in all cases.