settings: Default gtk-split-cursor to FALSE
authorMatthias Clasen <mclasen@redhat.com>
Thu, 5 Aug 2021 18:05:28 +0000 (14:05 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Thu, 5 Aug 2021 18:05:28 +0000 (14:05 -0400)
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

index 4ad2e66ac4e074fdf6d36801b1f5fe11d17b6807..af4538e94f0936fda977d4e595189a4eabf3bea5 100644 (file)
@@ -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);