The problem with my code below is that on US/UK keyboard layouts + is generated with shift + =, but when the user uses both the control and shift modif
+
shift + =
You have to use Qt.ShiftModifier for reacting on shift key:
Qt.ShiftModifier
shift
Item { focus: true Keys.onPressed: { if ((event.key == Qt.Key_Plus) && (event.modifiers & Qt.ShiftModifier)) console.log("PRessed"); } }