[gnome-shell/gbsneto/new-lock-screen: 19/23] screenShield: Cleanup unused parameters
- From: Georges Basile Stavracas Neto <gbsneto src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/gbsneto/new-lock-screen: 19/23] screenShield: Cleanup unused parameters
- Date: Thu, 10 Oct 2019 19:33:21 +0000 (UTC)
commit a7060fd1cf876c2429bf602cafe04080c9b69f9a
Author: Georges Basile Stavracas Neto <georges stavracas gmail com>
Date: Mon Oct 7 18:41:45 2019 -0300
screenShield: Cleanup unused parameters
js/ui/screenShield.js | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
---
diff --git a/js/ui/screenShield.js b/js/ui/screenShield.js
index 88ce5a20e8..90c4dde9aa 100644
--- a/js/ui/screenShield.js
+++ b/js/ui/screenShield.js
@@ -106,14 +106,14 @@ var ScreenShield = class {
this._smartcardManager.connect('smartcard-inserted',
(manager, token) => {
if (this._isLocked && token.UsedToLogin)
- this._liftShield(true, 0);
+ this._liftShield();
});
this._oVirtCredentialsManager = OVirt.getOVirtCredentialsManager();
this._oVirtCredentialsManager.connect('user-authenticated',
() => {
if (this._isLocked)
- this._liftShield(true, 0);
+ this._liftShield();
});
this._loginManager = LoginManager.getLoginManager();
@@ -212,9 +212,9 @@ var ScreenShield = class {
this._createBackground(i);
}
- _liftShield(onPrimary, velocity) {
+ _liftShield() {
if (this._isLocked) {
- if (this._ensureUnlockDialog(onPrimary, true /* allowCancel */))
+ if (this._ensureUnlockDialog(true /* allowCancel */))
this._hideLockScreen();
} else {
this.deactivate(true /* animate */);
@@ -262,7 +262,7 @@ var ScreenShield = class {
return Clutter.EVENT_PROPAGATE;
if (this._isLocked &&
- this._ensureUnlockDialog(true, true) &&
+ this._ensureUnlockDialog(true) &&
GLib.unichar_isgraph(unichar))
this._dialog.addCharacter(unichar);
@@ -400,7 +400,7 @@ var ScreenShield = class {
this.actor.show();
this._isGreeter = Main.sessionMode.isGreeter;
this._isLocked = true;
- if (this._ensureUnlockDialog(true, true))
+ if (this._ensureUnlockDialog(true))
this._hideLockScreen();
}
@@ -421,7 +421,7 @@ var ScreenShield = class {
this._cursorTracker.set_pointer_visible(true);
}
- _ensureUnlockDialog(onPrimary, allowCancel) {
+ _ensureUnlockDialog(allowCancel) {
if (!this._dialog) {
let constructor = Main.sessionMode.unlockDialog;
if (!constructor) {
@@ -434,7 +434,7 @@ var ScreenShield = class {
let time = global.get_current_time();
- if (!this._dialog.open(time, onPrimary)) {
+ if (!this._dialog.open(time)) {
// This is kind of an impossible error: we're already modal
// by the time we reach this...
log('Could not open login dialog: failed to acquire grab');
@@ -462,7 +462,7 @@ var ScreenShield = class {
if (this._lockScreenState != MessageTray.State.HIDDEN)
return;
- this._ensureUnlockDialog(false, false);
+ this._ensureUnlockDialog(false);
this._lockScreenState = MessageTray.State.SHOWING;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]