gmime3, gnome-backgrounds, gnome-shell, gnome-shell-extensions, gnome-keyring, sushi packaged

This commit is contained in:
Berk Çakar
2021-06-01 17:52:31 +03:00
parent 601be85f3d
commit 1546f14a6c
17 changed files with 665 additions and 0 deletions
@@ -0,0 +1,27 @@
This reverts commit 019229c40efb67e3d26f14afa71bf926efeff3fb.
ref: https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/4284
diff --git a/js/ui/windowManager.js b/js/ui/windowManager.js
index 49d3dda22..5a3327b1b 100644
--- ./js/ui/windowManager.js
+++ ./js/ui/windowManager.js
@@ -973,7 +973,6 @@ var WindowManager = class {
}
async _startX11Services(task, cancellable) {
- let status = true;
try {
await Shell.util_start_systemd_unit(
'gnome-session-x11-services-ready.target', 'fail', cancellable);
@@ -984,9 +983,8 @@ var WindowManager = class {
// Note that we do log cancellation from here.
if (!e.matches(Gio.IOErrorEnum, Gio.IOErrorEnum.NOT_SUPPORTED))
log('Error starting X11 services: %s'.format(e.message));
- status = false;
} finally {
- task.return_boolean(status);
+ task.return_boolean(true);
}
}