summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVojtech Bocek <vbocek@gmail.com>2015-01-12 18:25:59 +0100
committerDees Troy <dees_troy@teamw.in>2015-01-12 20:11:09 +0100
commit85cfb7d7b7e8e5c513daa59a13ba420ccb95ca4a (patch)
treec116b272fa55d795c7334e4588aacd39a73c3dc1
parentgui: simplify blanktimer (diff)
downloadandroid_bootable_recovery-85cfb7d7b7e8e5c513daa59a13ba420ccb95ca4a.tar
android_bootable_recovery-85cfb7d7b7e8e5c513daa59a13ba420ccb95ca4a.tar.gz
android_bootable_recovery-85cfb7d7b7e8e5c513daa59a13ba420ccb95ca4a.tar.bz2
android_bootable_recovery-85cfb7d7b7e8e5c513daa59a13ba420ccb95ca4a.tar.lz
android_bootable_recovery-85cfb7d7b7e8e5c513daa59a13ba420ccb95ca4a.tar.xz
android_bootable_recovery-85cfb7d7b7e8e5c513daa59a13ba420ccb95ca4a.tar.zst
android_bootable_recovery-85cfb7d7b7e8e5c513daa59a13ba420ccb95ca4a.zip
-rw-r--r--gui/action.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/action.cpp b/gui/action.cpp
index a341e4a62..c298d02af 100644
--- a/gui/action.cpp
+++ b/gui/action.cpp
@@ -361,7 +361,7 @@ int GUIAction::flash_zip(std::string filename, int* wipe_cache)
bool GUIAction::needsToRunInSeparateThread(const GUIAction::Action& action)
{
- return setActionsRunningInCallerThread.find(action.mFunction) == setActionsRunningInCallerThread.end();
+ return setActionsRunningInCallerThread.find(gui_parse_text(action.mFunction)) == setActionsRunningInCallerThread.end();
}
int GUIAction::doActions()