Dominique Leuenberger
ae927d21d3
+ Accessibility: Remove "screen" labels that take too much space + Appearance: Fix accidental reset of accent colors config + Apps: Fix some memory leaks + Color: Ensure profiles are connected before operating on them + Mobile Networks: Fix alignment of status pages + Mouse: - Fix illustration assets requiring gstreamer-plugins-bad - Update illustration assets + Printers: Remove wrong tooltip in the "Add Printer" button + Updated translations. OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-control-center?expand=0&rev=574
15 lines
613 B
Diff
15 lines
613 B
Diff
diff -urp gnome-control-center-46.3.orig/panels/system/cc-system-panel.c gnome-control-center-46.3/panels/system/cc-system-panel.c
|
|
--- gnome-control-center-46.3.orig/panels/system/cc-system-panel.c 2024-07-30 14:27:24.426647687 -0500
|
|
+++ gnome-control-center-46.3/panels/system/cc-system-panel.c 2024-07-30 14:36:02.188142991 -0500
|
|
@@ -77,8 +77,8 @@ gnome_software_allows_updates (void)
|
|
static gboolean
|
|
gnome_software_exists (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
|