From c2ba11425c240801028b7ed2205e79c478e67bfd 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 d08e2ec36..62411d987 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) {