screenShield: Rename _liftShield to _activateDialog
Lifting the shield is now what happens *after* successfully logging in, not before. Now, what we do is activate the dialog before logging in. Rename the method to reflect that. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/872
This commit is contained in:
parent
7851069d9c
commit
cd09144069
@ -86,14 +86,14 @@ var ScreenShield = class {
|
||||
this._smartcardManager.connect('smartcard-inserted',
|
||||
(manager, token) => {
|
||||
if (this._isLocked && token.UsedToLogin)
|
||||
this._liftShield();
|
||||
this._activateDialog();
|
||||
});
|
||||
|
||||
this._oVirtCredentialsManager = OVirt.getOVirtCredentialsManager();
|
||||
this._oVirtCredentialsManager.connect('user-authenticated',
|
||||
() => {
|
||||
if (this._isLocked)
|
||||
this._liftShield();
|
||||
this._activateDialog();
|
||||
});
|
||||
|
||||
this._loginManager = LoginManager.getLoginManager();
|
||||
@ -157,7 +157,7 @@ var ScreenShield = class {
|
||||
this._syncInhibitor();
|
||||
}
|
||||
|
||||
_liftShield() {
|
||||
_activateDialog() {
|
||||
if (this._isLocked) {
|
||||
this._ensureUnlockDialog(true /* allowCancel */);
|
||||
this._dialog.activate();
|
||||
@ -220,7 +220,7 @@ var ScreenShield = class {
|
||||
GLib.unichar_isgraph(unichar))
|
||||
this._dialog.addCharacter(unichar);
|
||||
|
||||
this._liftShield();
|
||||
this._activateDialog();
|
||||
return Clutter.EVENT_STOP;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user