From 4cc7977d36aead1f1c7eab45e3410b3331a603ad Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 5 Aug 2021 14:05:28 -0400 Subject: [PATCH] settings: Default gtk-split-cursor to FALSE According to Owen, this was the intention when the setting was added in 2001. It only took us 20 years to fix the default value. --- gtk/gtksettings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtksettings.c b/gtk/gtksettings.c index 4ad2e66ac4..af4538e94f 100644 --- a/gtk/gtksettings.c +++ b/gtk/gtksettings.c @@ -414,7 +414,7 @@ gtk_settings_class_init (GtkSettingsClass *class) g_param_spec_boolean ("gtk-split-cursor", P_("Split Cursor"), P_("Whether two cursors should be displayed for mixed left-to-right and right-to-left text"), - TRUE, + FALSE, GTK_PARAM_READWRITE)); g_assert (result == PROP_SPLIT_CURSOR);