summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2015-09-23 15:24:09 (GMT)
committerBastien Nocera <hadess@hadess.net>2015-09-23 15:24:09 (GMT)
commitd4a833907f5ef0ef1e59b69faafb60293cc191d2 (patch)
tree6718937ca227f764f272cb1f2001b9dcb882fc49
parent77d6732218b9fd77b895d843632296d8e8182454 (diff)
downloadgnome-settings-daemon-d4a833907f5ef0ef1e59b69faafb60293cc191d2.zip
gnome-settings-daemon-d4a833907f5ef0ef1e59b69faafb60293cc191d2.tar.xz
xsettings: Fix cursor-size changes being ignored
The GSettings callback wasn't calling Xft when the cursor size configuration changed. https://bugzilla.gnome.org/show_bug.cgi?id=755431
-rw-r--r--plugins/xsettings/gsd-xsettings-manager.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/xsettings/gsd-xsettings-manager.c b/plugins/xsettings/gsd-xsettings-manager.c
index 5b3a866..b2e65e7 100644
--- a/plugins/xsettings/gsd-xsettings-manager.c
+++ b/plugins/xsettings/gsd-xsettings-manager.c
@@ -1033,7 +1033,8 @@ xsettings_callback (GSettings *settings,
GVariant *value;
if (g_str_equal (key, TEXT_SCALING_FACTOR_KEY) ||
- g_str_equal (key, SCALING_FACTOR_KEY)) {
+ g_str_equal (key, SCALING_FACTOR_KEY) ||
+ g_str_equal (key, CURSOR_SIZE_KEY)) {
xft_callback (NULL, key, manager);
return;
}