mirror of
https://github.com/HACKERALERT/Picocrypt.git
synced 2024-12-28 10:24:19 +00:00
Fixed minor progress bar bug
This commit is contained in:
parent
44fe14a074
commit
de5000396e
1 changed files with 1 additions and 1 deletions
|
@ -612,7 +612,7 @@ def start():
|
|||
statusString.set(info)
|
||||
|
||||
# Increase done and write to output
|
||||
done += chunkSize if not reedsolo else 1104905
|
||||
done += 1104905 if (reedsolo and decrypting) else chunkSize
|
||||
fout.write(data)
|
||||
|
||||
# Show appropriate notice if file corrupted or modified
|
||||
|
|
Loading…
Reference in a new issue