[Xfce4-commits] [xfce/xfce4-settings] 01/01: Fix: /Xft/Hinting is never set (Xfce #12086), thanks Dan Callaghan

noreply at xfce.org noreply at xfce.org
Sat Aug 13 14:54:54 CEST 2016


This is an automated email from the git hooks/post-receive script.

bluesabre pushed a commit to branch master
in repository xfce/xfce4-settings.

commit 82a6f87bb7325f1a210ecaaa271fd2d6efbe1bbb
Author: Sean Davis <smd.seandavis at gmail.com>
Date:   Sat Aug 13 08:54:49 2016 -0400

    Fix: /Xft/Hinting is never set (Xfce #12086), thanks Dan Callaghan
---
 dialogs/appearance-settings/main.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dialogs/appearance-settings/main.c b/dialogs/appearance-settings/main.c
index b8bca0b..860669c 100644
--- a/dialogs/appearance-settings/main.c
+++ b/dialogs/appearance-settings/main.c
@@ -561,6 +561,9 @@ cb_hinting_style_combo_changed (GtkComboBox *combo)
 
     /* Save setting */
     xfconf_channel_set_string (xsettings_channel, "/Xft/HintStyle", xft_hint_styles_array[active]);
+
+    /* Also update /Xft/Hinting to match */
+    xfconf_channel_set_int (xsettings_channel, "/Xft/Hinting", active > 0 ? 1 : 0);
 }
 
 static void

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list