forked from pool/gnome-control-center
- Update to version 46.3: + CI fixes + Mouse: Make Mouse test click indicator not respond for middle clicks + Network: Reference icon-name proper for wifi panel + Tests: Don't require Xvfb or setxkbmap for tests + Sharing: Make Orca read the "Add Folder" row in Media Sharing settings + Update translations. - Refresh patches with quilt. OBS-URL: https://build.opensuse.org/request/show/1183892 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-control-center?expand=0&rev=561
16 lines
532 B
Diff
16 lines
532 B
Diff
diff --git a/panels/info-overview/cc-info-overview-panel.c b/panels/info-overview/cc-info-overview-panel.c
|
|
index 700df61..846ac80 100644
|
|
--- a/panels/info-overview/cc-info-overview-panel.c
|
|
+++ b/panels/info-overview/cc-info-overview-panel.c
|
|
@@ -111,8 +111,8 @@ does_gnome_software_allow_updates (void)
|
|
static gboolean
|
|
does_gnome_software_exist (void)
|
|
{
|
|
- g_autofree gchar *path = g_find_program_in_path ("gnome-software");
|
|
- return path != NULL;
|
|
+ /* Don't use gnome-software in SLE. */
|
|
+ return FALSE;
|
|
}
|
|
|
|
static gboolean
|