From b9d50584d8ec01ed6c37f74e2a6b59c906e07e61 Mon Sep 17 00:00:00 2001 From: Cosimo Cecchi Date: Tue, 6 Nov 2012 17:44:11 -0500 Subject: [PATCH] screenshield: use the correct actor for the background Commit 4fd690333aa3713b48128cded71a3f11234729a9 added the GLSL snippet to the background actor, but then discarded the newly created actor. --- js/ui/screenShield.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/screenShield.js b/js/ui/screenShield.js index e47f0aa7c..7c7c7c020 100644 --- a/js/ui/screenShield.js +++ b/js/ui/screenShield.js @@ -409,7 +409,7 @@ const ScreenShield = new Lang.Class({ GLSL_BLUR_EFFECT_CODE, true); this._background = new St.Bin({ style_class: 'screen-shield-background', - child: Meta.BackgroundActor.new_for_screen(global.screen) }); + child: backgroundActor }); this._lockScreenGroup.add_actor(this._background); this._lockScreenGroup.add_actor(this._lockScreenContents);