diff options
author | bigbiff bigbiff <bigbiff@teamw.in> | 2013-02-10 20:28:30 +0100 |
---|---|---|
committer | Dees_Troy <dees_troy@yahoo.com> | 2013-02-13 20:16:03 +0100 |
commit | 8a68c31ffc98bda5abd3bd03f49727c7400bbba8 (patch) | |
tree | 6cabf8a7768f3aade87d2db8f6580fdc98b1ed52 /gui/action.cpp | |
parent | Change popen in twrpTar to __popen (diff) | |
download | android_bootable_recovery-8a68c31ffc98bda5abd3bd03f49727c7400bbba8.tar android_bootable_recovery-8a68c31ffc98bda5abd3bd03f49727c7400bbba8.tar.gz android_bootable_recovery-8a68c31ffc98bda5abd3bd03f49727c7400bbba8.tar.bz2 android_bootable_recovery-8a68c31ffc98bda5abd3bd03f49727c7400bbba8.tar.lz android_bootable_recovery-8a68c31ffc98bda5abd3bd03f49727c7400bbba8.tar.xz android_bootable_recovery-8a68c31ffc98bda5abd3bd03f49727c7400bbba8.tar.zst android_bootable_recovery-8a68c31ffc98bda5abd3bd03f49727c7400bbba8.zip |
Diffstat (limited to '')
-rw-r--r-- | gui/action.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gui/action.cpp b/gui/action.cpp index e56db2b76..f1dac1c9b 100644 --- a/gui/action.cpp +++ b/gui/action.cpp @@ -24,6 +24,7 @@ #include "../ui.h" #include "../adb_install.h" +#include "blanktimer.hpp" extern "C" { #include "../common.h" @@ -44,6 +45,7 @@ int gui_start(); #include "objects.hpp" extern RecoveryUI* ui; +extern blanktimer blankTimer; void curtainClose(void); @@ -323,6 +325,7 @@ void GUIAction::operation_end(const int operation_status, const int simulate) } DataManager::SetValue("tw_operation_state", 1); DataManager::SetValue(TW_ACTION_BUSY, 0); + blankTimer.resetTimerAndUnblank(); } int GUIAction::doAction(Action action, int isThreaded /* = 0 */) |