diff options
author | Clement Lefebvre <[email protected]> | 2015-09-03 14:20:39 +0100 |
---|---|---|
committer | Clement Lefebvre <[email protected]> | 2015-09-03 14:20:39 +0100 |
commit | dbc59a272ca033652402d5cf3ade7ca11cab0027 (patch) | |
tree | d14305a990ec06cc8f66e2408d646eac17bf45a8 /plugins/mouse/msd-mouse-manager.c | |
parent | e1becf4e7b72d5ec3b915e7922b81f4e25c03f1b (diff) | |
download | mate-settings-daemon-dbc59a272ca033652402d5cf3ade7ca11cab0027.tar.bz2 mate-settings-daemon-dbc59a272ca033652402d5cf3ade7ca11cab0027.tar.xz |
Touchpad support: Fixed default value for tapping when configuration is outside of bonds, fixed typo in settings description
Diffstat (limited to 'plugins/mouse/msd-mouse-manager.c')
-rw-r--r-- | plugins/mouse/msd-mouse-manager.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mouse/msd-mouse-manager.c b/plugins/mouse/msd-mouse-manager.c index 9b63cbe..3fd7430 100644 --- a/plugins/mouse/msd-mouse-manager.c +++ b/plugins/mouse/msd-mouse-manager.c @@ -655,9 +655,9 @@ set_tap_to_click (MsdMouseManager * manager) if (one_finger_tap > 3 || one_finger_tap < 1) one_finger_tap = 1; if (two_finger_tap > 3 || two_finger_tap < 1) - two_finger_tap = 2; + two_finger_tap = 3; if (three_finger_tap > 3 || three_finger_tap < 1) - three_finger_tap = 3; + three_finger_tap = 2; if (rc == Success && type == XA_INTEGER && format == 8 && nitems >= 7) { |