diff options
author | bigbiff bigbiff <bigbiff@teamw.in> | 2013-02-28 02:50:43 +0100 |
---|---|---|
committer | bigbiff bigbiff <bigbiff@teamw.in> | 2013-02-28 02:50:43 +0100 |
commit | f8e2f375656b5ed8e90a501aea4f6925fe7d7d5d (patch) | |
tree | 5761efa0ffe4cdcaa3aa31a10820f480df8d5515 /gui/gui.cpp | |
parent | Copy fast scroll feature to listbox (diff) | |
download | android_bootable_recovery-f8e2f375656b5ed8e90a501aea4f6925fe7d7d5d.tar android_bootable_recovery-f8e2f375656b5ed8e90a501aea4f6925fe7d7d5d.tar.gz android_bootable_recovery-f8e2f375656b5ed8e90a501aea4f6925fe7d7d5d.tar.bz2 android_bootable_recovery-f8e2f375656b5ed8e90a501aea4f6925fe7d7d5d.tar.lz android_bootable_recovery-f8e2f375656b5ed8e90a501aea4f6925fe7d7d5d.tar.xz android_bootable_recovery-f8e2f375656b5ed8e90a501aea4f6925fe7d7d5d.tar.zst android_bootable_recovery-f8e2f375656b5ed8e90a501aea4f6925fe7d7d5d.zip |
Diffstat (limited to 'gui/gui.cpp')
-rw-r--r-- | gui/gui.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gui/gui.cpp b/gui/gui.cpp index 4788fe0df..f08d68be3 100644 --- a/gui/gui.cpp +++ b/gui/gui.cpp @@ -185,9 +185,12 @@ input_thread (void *cookie) 0, lshift = 0, rshift = 0, key_repeat = 0; static struct timeval touchStart; HardwareKeyboard kb; + string seconds; //start screen timeout threads blankTimer.setTimerThread(); + DataManager::GetValue("tw_screen_timeout_secs", seconds); + blankTimer.setTime(atoi(seconds.c_str())); for (;;) { |