mate-settings-daemon/0001-feature-touchpad-set-the-default-values-of-disable-w.patch
2022-08-04 10:34:57 +08:00

39 lines
1.5 KiB
Diff

From 4b946f8e463d62fe77b1d76838b528117b036d60 Mon Sep 17 00:00:00 2001
From: tangjie02 <tangjie02@kylinos.com.cn>
Date: Mon, 24 Aug 2020 11:06:21 +0800
Subject: [PATCH] feature(touchpad): set the default values of
disable-while-typing and tap-to-click to true.
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
- 设置disable-while-typing和tap-to-click的默认值为true
Signed-off-by: tangjie02 <tangjie02@kylinos.com.cn>
---
data/org.mate.peripherals-touchpad.gschema.xml.in | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/data/org.mate.peripherals-touchpad.gschema.xml.in b/data/org.mate.peripherals-touchpad.gschema.xml.in
index 90b83c8..a67b6c9 100644
--- a/data/org.mate.peripherals-touchpad.gschema.xml.in
+++ b/data/org.mate.peripherals-touchpad.gschema.xml.in
@@ -6,12 +6,12 @@
</enum>
<schema id="org.mate.peripherals-touchpad" path="/org/mate/desktop/peripherals/touchpad/">
<key name="disable-while-typing" type="b">
- <default>false</default>
+ <default>true</default>
<summary>Disable touchpad while typing</summary>
<description>Set this to TRUE if you have problems with accidentally hitting the touchpad while typing.</description>
</key>
<key name="tap-to-click" type="b">
- <default>false</default>
+ <default>true</default>
<summary>Enable mouse clicks with touchpad</summary>
<description>Set this to TRUE to be able to send mouse clicks by tapping on the touchpad.</description>
</key>
--
2.18.1