Reset progress bar in ORS

Change-Id: Ia7df2fa80712dc9ff7fda97261fefa33ce823ae0
This commit is contained in:
Dees_Troy
2013-01-26 14:07:43 +00:00
parent 3ee47bc2ab
commit 6bdcbb1b96
+2 -1
View File
@@ -75,6 +75,7 @@ int OpenRecoveryScript::run_script_file(void) {
if (fp != NULL) {
DataManager::SetValue(TW_SIMULATE_ACTIONS, 0);
DataManager::SetValue("ui_progress", 0); // Reset the progress bar
while (fgets(script_line, SCRIPT_COMMAND_SIZE, fp) != NULL && ret_val == 0) {
cindex = 0;
line_len = strlen(script_line);
@@ -572,4 +573,4 @@ void OpenRecoveryScript::Run_OpenRecoveryScript(void) {
if (gui_startPage("action_page") != 0) {
LOGE("Failed to load OpenRecoveryScript GUI page.\n");
}
}
}