From 37badab513ccac69db427207c1cd38ee57997449 Mon Sep 17 00:00:00 2001 From: infirit Date: Fri, 21 Nov 2014 16:35:18 +0100 Subject: progress dialog: show the number of remaining files to complete the operation instead of the name of the file added/removed/extracted. Based on FR commit: bf2b5d2352cfcd9d4345dda7976208672838dce1 From: Paolo Bacchilega --- src/fr-command-7z.c | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) (limited to 'src/fr-command-7z.c') diff --git a/src/fr-command-7z.c b/src/fr-command-7z.c index 29af8cf..a5607f5 100644 --- a/src/fr-command-7z.c +++ b/src/fr-command-7z.c @@ -254,10 +254,6 @@ fr_command_7z_list (FrCommand *comm) } -static char Progress_Message[4196]; -static char Progress_Filename[4096]; - - static void parse_progress_line (FrCommand *comm, const char *prefix, @@ -267,16 +263,8 @@ parse_progress_line (FrCommand *comm, int prefix_len; prefix_len = strlen (prefix); - if (strncmp (line, prefix, prefix_len) == 0) { - double fraction; - - strcpy (Progress_Filename, line + prefix_len); - sprintf (Progress_Message, "%s%s", message_prefix, file_name_from_path (Progress_Filename)); - fr_command_message (comm, Progress_Message); - - fraction = (double) ++comm->n_file / (comm->n_files + 1); - fr_command_progress (comm, fraction); - } + if (strncmp (line, prefix, prefix_len) == 0) + fr_command_progress (comm, (double) ++comm->n_file / (comm->n_files + 1)); } -- cgit v1.2.1