summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Ådahl <jadahl@gmail.com>2018-01-10 11:53:31 +0800
committerJonas Ådahl <jadahl@gmail.com>2018-01-12 18:57:57 +0800
commit01e27a43667d4c47c7c0bfba4dcb6264389ef08c (patch)
tree1ff1c4a54047cdcf67ef4e302f715255b30f9a0d
parent4e3b26d2ed2c51acac35a115946f6f3aa79e3f3e (diff)
downloadmutter-01e27a43667d4c47c7c0bfba4dcb6264389ef08c.tar.gz
input-settings/x11: Fix tap-and-drag libinput property name
It's "libinput Tapping Drag Enabled", not "libinput TappingDrag Enabled". https://bugzilla.gnome.org/show_bug.cgi?id=775755
-rw-r--r--src/backends/x11/meta-input-settings-x11.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backends/x11/meta-input-settings-x11.c b/src/backends/x11/meta-input-settings-x11.c
index 98d05a9ed..d1ee37ac2 100644
--- a/src/backends/x11/meta-input-settings-x11.c
+++ b/src/backends/x11/meta-input-settings-x11.c
@@ -239,7 +239,7 @@ meta_input_settings_x11_set_tap_and_drag_enabled (MetaInputSettings *settings,
{
guchar value = (enabled) ? 1 : 0;
- change_property (device, "libinput TappingDrag Enabled",
+ change_property (device, "libinput Tapping Drag Enabled",
XA_INTEGER, 8, &value, 1);
}