From fdac0602db157207e233ee44ad4ccb06bf64ff5d Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Thu, 30 Jul 2020 11:45:56 +0200 Subject: [PATCH] background: Mark pattern backgrounds as loaded Otherwise we don't let GNOME Shell startup to proceed. Noticed by accidentally running on the memory GSettings backend. https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1381 --- js/ui/background.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/ui/background.js b/js/ui/background.js index 6ee1b31a6..ca3445160 100644 --- a/js/ui/background.js +++ b/js/ui/background.js @@ -347,6 +347,8 @@ var Background = GObject.registerClass({ this.set_color(color); else this.set_gradient(shadingType, color, secondColor); + + this._setLoaded(); } _watchFile(file) {