diff options
author | Monsta <[email protected]> | 2015-09-04 10:54:05 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2015-09-25 16:24:47 +0300 |
commit | ac049a8d3702d29dc27acfb7ff6ea8e296cda117 (patch) | |
tree | f79ab07233828f3b138c75b6b85f07799d386923 | |
parent | 047ade5b6776b46245ac8553f5d9d0b5ef98c14e (diff) | |
download | mate-settings-daemon-ac049a8d3702d29dc27acfb7ff6ea8e296cda117.tar.bz2 mate-settings-daemon-ac049a8d3702d29dc27acfb7ff6ea8e296cda117.tar.xz |
mouse: use syndaemon -K to ignore Ctrl+C and other combos
adapted from
https://git.gnome.org/browse/gnome-settings-daemon/commit?id=d8e4167a257d253c0f02cb50d170b26ab57fb5be
-rw-r--r-- | plugins/mouse/msd-mouse-manager.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mouse/msd-mouse-manager.c b/plugins/mouse/msd-mouse-manager.c index 52a8572..459ef0f 100644 --- a/plugins/mouse/msd-mouse-manager.c +++ b/plugins/mouse/msd-mouse-manager.c @@ -584,7 +584,7 @@ set_disable_w_typing (MsdMouseManager *manager, gboolean state) args[0] = "syndaemon"; args[1] = "-i"; args[2] = "0.5"; - args[3] = "-k"; + args[3] = "-K"; args[4] = "-R"; args[5] = NULL; |