Use the right getter
org.gnome.desktop.screensaver lock-delay is an integer, not a boolean, so don't use get_bool() on it. https://bugzilla.gnome.org/show_bug.cgi?id=691170
This commit is contained in:
parent
4b8891b37a
commit
d339d2db09
@ -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_boolean(LOCK_DELAY_KEY));
|
||||
(elapsedTime >= this._settings.get_int(LOCK_DELAY_KEY));
|
||||
if (shouldLock || this._isLocked) {
|
||||
this.lock(false);
|
||||
} else if (this._isActive) {
|
||||
|
Loading…
Reference in New Issue
Block a user