diff options
author | Carlos Garnacho <carlosg@gnome.org> | 2021-01-13 12:17:26 +0100 |
---|---|---|
committer | Carlos Garnacho <carlosg@gnome.org> | 2021-01-15 17:32:22 +0000 |
commit | b03de7c06a81b08ea26cc4756b12a7ab5b5037f9 (patch) | |
tree | 6410a0ee000a44c0f90ae2a29edc71b93aafa9ed | |
parent | f7702421321ff8aeeb2aad26afefee997b63e938 (diff) | |
download | gnome-settings-daemon-b03de7c06a81b08ea26cc4756b12a7ab5b5037f9.tar.gz |
xsettings: Use correct mouse settings schema
This was missed porting drag-threshold/double-click to g-d-s, this
was handled "elegantly" in testing/CI (the new settings were just
ineffective) because the schema was still around in the environment
coming from the system install, but will likely trigger GSetting
asserts if it wasn't there as a fallback.
-rw-r--r-- | plugins/xsettings/gsd-xsettings-manager.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/xsettings/gsd-xsettings-manager.c b/plugins/xsettings/gsd-xsettings-manager.c index 07ec543e..518db192 100644 --- a/plugins/xsettings/gsd-xsettings-manager.c +++ b/plugins/xsettings/gsd-xsettings-manager.c @@ -49,7 +49,7 @@ #include "gsd-remote-display-manager.h" #include "wm-button-layout-translation.h" -#define MOUSE_SETTINGS_SCHEMA "org.gnome.settings-daemon.peripherals.mouse" +#define MOUSE_SETTINGS_SCHEMA "org.gnome.desktop.peripherals.mouse" #define BACKGROUND_SETTINGS_SCHEMA "org.gnome.desktop.background" #define INTERFACE_SETTINGS_SCHEMA "org.gnome.desktop.interface" #define SOUND_SETTINGS_SCHEMA "org.gnome.desktop.sound" |