You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
29 lines
1.1 KiB
From 5f95aedf5ae292549a7c0a63596b3f8d0c38a2af Mon Sep 17 00:00:00 2001
|
|
From: Sergey Cherevko <s.cherevko@msvsphere-os.ru>
|
|
Date: Fri, 29 Dec 2023 14:57:49 +0300
|
|
Subject: [PATCH 2/2] Location and reporting services option should be off by
|
|
default
|
|
|
|
---
|
|
gnome-initial-setup/pages/privacy/gis-privacy-page.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/gnome-initial-setup/pages/privacy/gis-privacy-page.c b/gnome-initial-setup/pages/privacy/gis-privacy-page.c
|
|
index f2af372..cc2fa2a 100644
|
|
--- a/gnome-initial-setup/pages/privacy/gis-privacy-page.c
|
|
+++ b/gnome-initial-setup/pages/privacy/gis-privacy-page.c
|
|
@@ -173,8 +173,8 @@ gis_privacy_page_constructed (GObject *object)
|
|
priv->location_settings = g_settings_new ("org.gnome.system.location");
|
|
priv->privacy_settings = g_settings_new ("org.gnome.desktop.privacy");
|
|
|
|
- gtk_switch_set_active (GTK_SWITCH (priv->location_switch), TRUE);
|
|
- gtk_switch_set_active (GTK_SWITCH (priv->reporting_switch), TRUE);
|
|
+ gtk_switch_set_active (GTK_SWITCH (priv->location_switch), FALSE);
|
|
+ gtk_switch_set_active (GTK_SWITCH (priv->reporting_switch), FALSE);
|
|
|
|
update_os_data (page);
|
|
|
|
--
|
|
2.39.3
|
|
|