Fix background not updating

This commit is contained in:
Romain Vigier
2020-09-24 13:43:16 +02:00
parent 3ab0255d5f
commit 1e7f7d4032
+1 -1
View File
@@ -73,7 +73,7 @@ var Backgrounder = class {
_connectSettings() {
logDebug('Connecting Backgrounder to settings...');
this._backgroundChangedConnect = e.settings.backgrounds.connect('time-changed', this._onBackgroundChanged.bind(this));
this._backgroundChangedConnect = e.settings.backgrounds.connect('background-changed', this._onBackgroundChanged.bind(this));
this._systemBackgroundChangedConnect = e.settings.system.connect('background-changed', this._onSystemBackgroundChanged.bind(this));
}