From 81faf7caa31fd9a4942d56f2fcc443c94eb56f35 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 5 Apr 2024 00:49:46 +0200 Subject: [PATCH] settings: Change the default of hint-font-metrics Change the default value to TRUE. This is because we want to stop hardcoding this value for unscaled situations, but we don't want to change everybody's font rendering. --- gtk/gtksettings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtksettings.c b/gtk/gtksettings.c index e44f35d11a..d9bda5dc3c 100644 --- a/gtk/gtksettings.c +++ b/gtk/gtksettings.c @@ -507,7 +507,7 @@ gtk_settings_class_init (GtkSettingsClass *class) * Since: 4.6 */ pspecs[PROP_HINT_FONT_METRICS] = g_param_spec_boolean ("gtk-hint-font-metrics", NULL, NULL, - FALSE, + TRUE, GTK_PARAM_READWRITE); /**