diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2013-04-29 14:14:43 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2013-05-02 09:53:04 +1000 |
commit | 915a64589f34a0593fe55afa82de30c4415c3020 (patch) | |
tree | e277968925a9a87c82530ae5fa034b942ad4482f /tools | |
parent | c1f31c0ab16bc11614d6cfbd9bc16e4714732279 (diff) | |
download | xf86-input-wacom-915a64589f34a0593fe55afa82de30c4415c3020.tar.gz |
xsetwacom: add special mappings for Home, End, Delete
These three are likely written as home, end, del, so let's try to
understand that.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Ping Cheng <pinglinux@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/xsetwacom.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/xsetwacom.c b/tools/xsetwacom.c index aea2243..d475947 100644 --- a/tools/xsetwacom.c +++ b/tools/xsetwacom.c @@ -570,6 +570,9 @@ static struct modifier specialkeys[] = { {"PgUp", "Prior"}, {"PgDn", "Next"}, + {"del", "Delete"}, {"home", "Home"}, + {"end", "End"}, + { NULL, NULL } }; |