Skip to content

Commit

Permalink
Warning fixing for fast loading
Browse files Browse the repository at this point in the history
CURA-11050
  • Loading branch information
saumyaj3 committed Sep 22, 2023
1 parent c3b4900 commit 4efad79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UM/Qt/qml/UM/MenuItem.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 4efad79

Please sign in to comment.