mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
thunderbolt: fix missing variable underscore for enrolling
The variable `this.enrolling` is a typo because it has not been defined before and is also never used. `this._enrolling` is what it was meant to be.
This commit is contained in:
parent
e5ce3d541e
commit
616852cf2b
1 changed files with 1 additions and 1 deletions
|
|
@ -195,7 +195,7 @@ var AuthRobot = new Lang.Class({
|
|||
if (this._enrolling)
|
||||
return;
|
||||
|
||||
this.enrolling = true;
|
||||
this._enrolling = true;
|
||||
GLib.idle_add(GLib.PRIORITY_DEFAULT,
|
||||
this._enrollDevicesIdle.bind(this));
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue