From a87e0f028a2a658685fcbced0583ae46dc487800 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 12 Mar 2013 12:57:04 -0400 Subject: [PATCH] screenShield: Also unlock on Return/Enter Since that's what I always did before, having it ignore those is driving me mad. https://bugzilla.gnome.org/show_bug.cgi?id=686740 --- js/ui/screenShield.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/ui/screenShield.js b/js/ui/screenShield.js index 25fa4ccfb..f2a1ceac7 100644 --- a/js/ui/screenShield.js +++ b/js/ui/screenShield.js @@ -597,7 +597,8 @@ const ScreenShield = new Lang.Class({ if (this._lockScreenState != MessageTray.State.SHOWN) return false; - if (!(GLib.unichar_isprint(unichar) || symbol == Clutter.KEY_Escape)) + let isEnter = (symbol == Clutter.KEY_Return || symbol == Clutter.KEY_KP_Enter); + if (!isEnter && !(GLib.unichar_isprint(unichar) || symbol == Clutter.KEY_Escape)) return false; this._ensureUnlockDialog(true, true);