Details
-
Bug
-
Resolution: Done
-
P2: Important
-
4.7.3
-
Windows7
-
6265ac63fe85e1ff8b2d9ca3d023b3a1a8b281f0 (4.8)
Description
Limiting a shortcut of a button to react only for keypad events is not working with Qt::KeypadModifier. For example,
setShortcut ( QKeySequence( Qt::KeypadModifier + Qt::Key_5 ) );
does not create a shortcut to a button. When
setShortcut ( QKeySequence( Qt::Key_5 ) );
creates one, but it is not limited to keypad.
Attached example shows the issue.
Attachments
Issue Links
- relates to
-
QTBUG-102440 QShortcut(QKeySequence("Num+Home")) is never triggered
- Reported