From 5934dc16d30f78809f3f03bc3c05dbd558be8b5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sat, 15 Feb 2020 01:57:06 +0100 Subject: [PATCH] screenShield: Reset correct translation When showing the lock dialog without animation, we currently reset the translation of the wrong actor, leaving the unlock dialog off-screen. https://gitlab.gnome.org/GNOME/gnome-shell/issues/2213 --- 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 25501b850..5c0b76a75 100644 --- a/js/ui/screenShield.js +++ b/js/ui/screenShield.js @@ -431,7 +431,7 @@ var ScreenShield = class { }, }); } else { - this._lockScreenGroup.translation_y = 0; + this._lockDialogGroup.translation_y = 0; this._lockScreenShown({ fadeToBlack, animateFade: false }); }