trezor: Fix screen timeout (#131)

This commit is contained in:
Saleem Rashid 2016-11-26 07:48:04 -05:00 committed by Pavol Rusnak
parent b4eaf7dbaf
commit 5c00b24307
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ void check_lock_screen(void)
// if homescreen is shown for longer than 10 minutes, lock too
if (layoutLast == layoutHome) {
if ((system_millis - system_millis_lock_start) >= 60000) {
if ((system_millis - system_millis_lock_start) >= 600000) {
// lock the screen
session_clear(true);
layoutScreensaver();