Really use the right getter
Doh, it is actually a uint, not an int.
This commit is contained in:
parent
d339d2db09
commit
57d6fec65e
@ -587,7 +587,7 @@ const ScreenShield = new Lang.Class({
|
||||
let elapsedTime = (GLib.get_monotonic_time() - this._activationTime) / 1000000;
|
||||
let shouldLock = lightboxWasShown &&
|
||||
this._settings.get_boolean(LOCK_ENABLED_KEY) &&
|
||||
(elapsedTime >= this._settings.get_int(LOCK_DELAY_KEY));
|
||||
(elapsedTime >= this._settings.get_uint(LOCK_DELAY_KEY));
|
||||
if (shouldLock || this._isLocked) {
|
||||
this.lock(false);
|
||||
} else if (this._isActive) {
|
||||
|
Loading…
Reference in New Issue
Block a user