diff options
-rw-r--r-- | openrecoveryscript.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/openrecoveryscript.cpp b/openrecoveryscript.cpp index 6df1207b9..e319a9c61 100644 --- a/openrecoveryscript.cpp +++ b/openrecoveryscript.cpp @@ -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"); } -}
\ No newline at end of file +} |