|
From: Jason G. <kil...@gm...> - 2017-09-14 14:38:52
|
The table of keysyms does not include an obvious synonym for the "AltGr" key that is found on some international keyboard layouts. It seems that "ISO_Level3_Shift" is the magic name that should typically be used. https://sourceforge.net/p/linuxwacom/bugs/344/ Signed-off-by: Jason Gerecke <jas...@wa...> --- tools/xsetwacom.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/xsetwacom.c b/tools/xsetwacom.c index 834ebde..1051868 100644 --- a/tools/xsetwacom.c +++ b/tools/xsetwacom.c @@ -581,6 +581,8 @@ static struct modifier modifiers[] = { {"lhyper", "Hyper_L"}, {"rhyper", "Hyper_R"}, + {"altgr", "ISO_Level3_Shift"}, + { NULL, NULL } }; -- 2.14.1 |