Really use the right getter

Doh, it is actually a uint, not an int.
This commit is contained in:
Matthias Clasen 2013-01-05 14:21:30 -05:00 committed by Florian Müllner
parent d339d2db09
commit 57d6fec65e

View File

@ -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) {