diff --git a/js/ui/unlockDialog.js b/js/ui/unlockDialog.js index fe7bef1f9..8a2615639 100644 --- a/js/ui/unlockDialog.js +++ b/js/ui/unlockDialog.js @@ -378,9 +378,16 @@ var UnlockDialog = GObject.registerClass({ super._init({ accessible_role: Atk.Role.WINDOW, style_class: 'login-dialog', + reactive: true, visible: false, }); + let tapAction = new Clutter.TapAction(); + tapAction.connect('tap', () => { + this._showAuth(); + }) + this.add_action(tapAction); + this.add_constraint(new Layout.MonitorConstraint({ primary: true })); parentActor.add_child(this);