diff options
author | monsta <[email protected]> | 2016-11-01 12:34:15 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-11-01 12:38:09 +0300 |
commit | 77b1956a67bdc09fef7c76a459ca431008fde8f6 (patch) | |
tree | 37226c7315fce5fd46b8e6363911d24aee5ca794 /data | |
parent | 6d2b4fe2b83733cb8431b93177e4d00db58ba5d0 (diff) | |
download | mate-settings-daemon-77b1956a67bdc09fef7c76a459ca431008fde8f6.tar.bz2 mate-settings-daemon-77b1956a67bdc09fef7c76a459ca431008fde8f6.tar.xz |
mouse: add separate keys for touchpad motion settings (not used yet)
schema: org.mate.peripherals-touchpad
keys: motion-acceleration, motion-threshold (same as in peripherals-mouse schema)
types and default values: also same as for mouse
adapted from:
https://git.gnome.org/browse/gnome-settings-daemon/commit/?id=122aee4e56d6ed94c41dfbcac0bece1921629de7
Diffstat (limited to 'data')
-rw-r--r-- | data/org.mate.peripherals-touchpad.gschema.xml.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/data/org.mate.peripherals-touchpad.gschema.xml.in b/data/org.mate.peripherals-touchpad.gschema.xml.in index d3557dd..84aae6b 100644 --- a/data/org.mate.peripherals-touchpad.gschema.xml.in +++ b/data/org.mate.peripherals-touchpad.gschema.xml.in @@ -75,5 +75,15 @@ <summary>Touchpad button orientation</summary> <description>Swap left and right buttons for left-handed touchpads with 'left', 'right' for right-handed, 'mouse' to follow the mouse setting.</description> </key> + <key name="motion-acceleration" type="d"> + <default>-1</default> + <summary>Single Click</summary> + <description>Acceleration multiplier for touchpad motion. A value of -1 is the system default.</description> + </key> + <key name="motion-threshold" type="i"> + <default>-1</default> + <summary>Motion Threshold</summary> + <description>Distance in pixels the pointer must move before accelerated touchpad motion is activated. A value of -1 is the system default.</description> + </key> </schema> </schemalist> |