Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.3.0
-
None
Description
Shortcut { sequence: StandardKey.Undo }
- Prints console warning "QML Shortcut: Shortcut: Only binding to one of multiple key bindings associated with 11. Use 'sequences: [ <key> ]' to bind to all of them."
- Its sequence property returns 11.
- Its nativeText property returns 'CTRL-Z'.
- Only problem is the wrong console warning, since there seems to be no multiple key bindings.
Shortcut { sequences: [StandardKey.Undo] }
- No console warning in this case.
- Its sequences property returns [11,11].
- Its nativeText property returns empty string
- Now that the console warning was avoided, it does not return any native text any more.