From da8b55aff33bff641d7c1bb9c8cb9247484aa594 Mon Sep 17 00:00:00 2001 From: Dees_Troy Date: Wed, 12 Dec 2012 19:18:30 +0000 Subject: Restore text display during restore --- partition.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/partition.cpp b/partition.cpp index dafec5f3a..dd8d3b3aa 100644 --- a/partition.cpp +++ b/partition.cpp @@ -1245,6 +1245,7 @@ bool TWPartition::Restore_Tar(string restore_folder, string Restore_File_System) if (!Mount(true)) return false; + TWFunc::GUI_Operation_Text(TW_RESTORE_TEXT, Display_Name, "Restoring"); ui_print("Restoring %s...\n", Display_Name.c_str()); Full_FileName = restore_folder + "/" + Backup_FileName; if (!TWFunc::Path_Exists(Full_FileName)) { @@ -1276,6 +1277,7 @@ bool TWPartition::Restore_Tar(string restore_folder, string Restore_File_System) bool TWPartition::Restore_DD(string restore_folder) { string Full_FileName, Command; + TWFunc::GUI_Operation_Text(TW_RESTORE_TEXT, Display_Name, "Restoring"); ui_print("Restoring %s...\n", Display_Name.c_str()); Full_FileName = restore_folder + "/" + Backup_FileName; Command = "dd bs=4096 if='" + Full_FileName + "' of=" + Actual_Block_Device; -- cgit v1.2.3