diff options
author | Andreas Wettstein <wettstein509@solnet.ch> | 2011-11-30 20:20:21 +0100 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2012-01-09 10:51:13 +1000 |
commit | 6b194365364cb7a74c2b19f4a8c5e0e0404339da (patch) | |
tree | 22abfda4b406fa93597dde07ee4277ab805c7e52 /xkb | |
parent | ed8f3c4bd17bddf1369d050ea8e63b9451d887ce (diff) |
xkb: Message actions suppress other key presses #28575
When a key to which a message action is mapped is held down, presses of
other keys were not registered.
Signed-off-by: Andreas Wettstein <wettstein509@solnet.ch>
Reviewed-by: Daniel Stone <daniel@fooishbar.org>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'xkb')
-rw-r--r-- | xkb/xkbActions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xkb/xkbActions.c b/xkb/xkbActions.c index 33864e16d..da0bdea69 100644 --- a/xkb/xkbActions.c +++ b/xkb/xkbActions.c @@ -784,7 +784,7 @@ DeviceIntPtr kbd; filter->active= 0; return ((pMsg->flags&XkbSA_MessageGenKeyEvent)!=0); } - return 0; + return 1; } static int |