summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2021-08-05 14:05:28 -0400
committerMatthias Clasen <mclasen@redhat.com>2021-08-05 14:05:28 -0400
commit4cc7977d36aead1f1c7eab45e3410b3331a603ad (patch)
treec04370b09d58217986e0872213d25875074a4727
parente5e7f5dd88784173a8dd31e4a5c4a24d19131e37 (diff)
downloadgtk+-4cc7977d36aead1f1c7eab45e3410b3331a603ad.tar.gz
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.
-rw-r--r--gtk/gtksettings.c2
1 files changed, 1 insertions, 1 deletions
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);