Fix no mapping for SysReq key
XKB_KEY_Sys_Req keysym is currently unmapped to any Qt::Key. Implication of this it is uncapable to participate in any keyboard shortcuts. This patch adds the missing mapping. Detected by testXkb KWin unit test Fixes: QTBUG-92087 Pick-to: 5.15 6.0 6.1 Change-Id: I2440c218e265c5636fc1d2703f14d8bfe033967e Reviewed-by: Andrey Butirsky <butirsky@gmail.com> Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io> Reviewed-by: Liang Qi <liang.qi@qt.io> Reviewed-by: Aleix Pol Gonzalez <aleixpol@kde.org>bb10
parent
2d4699501b
commit
40193c2b69
|
|
@ -93,6 +93,7 @@ static constexpr const auto KeyTbl = qMakeArray(
|
|||
Xkb2Qt<XKB_KEY_Clear, Qt::Key_Delete>,
|
||||
Xkb2Qt<XKB_KEY_Pause, Qt::Key_Pause>,
|
||||
Xkb2Qt<XKB_KEY_Print, Qt::Key_Print>,
|
||||
Xkb2Qt<XKB_KEY_Sys_Req, Qt::Key_SysReq>,
|
||||
Xkb2Qt<0x1005FF60, Qt::Key_SysReq>, // hardcoded Sun SysReq
|
||||
Xkb2Qt<0x1007ff00, Qt::Key_SysReq>, // hardcoded X386 SysReq
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue