Blame SOURCES/0002-background-rebuild-background-not-just-animation-on-.patch

21e770
From 1a546d4df199f498b838efdccf081ada8ed1960b Mon Sep 17 00:00:00 2001
c7fac9
From: Ray Strode <rstrode@redhat.com>
c7fac9
Date: Tue, 15 Jan 2019 12:52:49 -0500
c7fac9
Subject: [PATCH 2/4] background: rebuild background, not just animation on
c7fac9
 resume
c7fac9
c7fac9
Previously, we would only refresh the animation on resume
c7fac9
(to handle clock skew).
c7fac9
c7fac9
But we actually need to rebuild the background, too, on nvidia,
c7fac9
so we should just do a full background change.
c7fac9
---
c7fac9
 js/ui/background.js | 2 +-
c7fac9
 1 file changed, 1 insertion(+), 1 deletion(-)
c7fac9
c7fac9
diff --git a/js/ui/background.js b/js/ui/background.js
21e770
index 06e038816..75b76a57e 100644
c7fac9
--- a/js/ui/background.js
c7fac9
+++ b/js/ui/background.js
21e770
@@ -254,7 +254,7 @@ var Background = class Background {
c7fac9
             (lm, aboutToSuspend) => {
c7fac9
                 if (aboutToSuspend)
c7fac9
                     return;
c7fac9
-                this._refreshAnimation();
c7fac9
+                this.emit('changed');
c7fac9
             });
c7fac9
 
c7fac9
         this._settingsChangedSignalId = this._settings.connect('changed', () => {
c7fac9
-- 
21e770
2.21.0
c7fac9