diff options
author | Stew Benedict <stewb@mandriva.org> | 2005-09-25 12:10:40 +0000 |
---|---|---|
committer | Stew Benedict <stewb@mandriva.org> | 2005-09-25 12:10:40 +0000 |
commit | 1f1a3e85451ef4b357c83eb47c549f55e867997a (patch) | |
tree | 9f7870518d8f298aacb53a377c341373bfde7d7e | |
parent | da09ad644d971fa4f75b7f8b2ce3744973febc7c (diff) | |
download | drakx-backup-do-not-use-1f1a3e85451ef4b357c83eb47c549f55e867997a.tar drakx-backup-do-not-use-1f1a3e85451ef4b357c83eb47c549f55e867997a.tar.gz drakx-backup-do-not-use-1f1a3e85451ef4b357c83eb47c549f55e867997a.tar.bz2 drakx-backup-do-not-use-1f1a3e85451ef4b357c83eb47c549f55e867997a.tar.xz drakx-backup-do-not-use-1f1a3e85451ef4b357c83eb47c549f55e867997a.zip |
Fix mis-sorted progress bars
-rwxr-xr-x | perl-install/standalone/drakbackup | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/drakbackup b/perl-install/standalone/drakbackup index 7e8367140..625a668ed 100755 --- a/perl-install/standalone/drakbackup +++ b/perl-install/standalone/drakbackup @@ -1055,7 +1055,7 @@ sub build_backup_files() { files_to_results("$incr$user"); } } - $interactive and progress($pbar2, $plabel1, 1, N("Backup User files...")); + $interactive and progress($pbar1, $plabel1, 1, N("Backup User files...")); $interactive and progress($pbar3, $plabel3, 0.4, N("Hard Disk Backup files...")); if ($conf{OTHER_FILES}) { @@ -1090,7 +1090,7 @@ sub build_backup_files() { push_list("list_$incr") if $incr =~ /_other/; files_to_results($incr); } - $interactive and progress($pbar1, $plabel2, 1, N("Backup Other files...")); + $interactive and progress($pbar2, $plabel2, 1, N("Backup Other files...")); $interactive and progress($pbar3, $plabel3, 0.3, N("Hard Disk Backup Progress...")); } |