Fixed minor progress bar bug
This commit is contained in:
parent
44fe14a074
commit
de5000396e
|
@ -612,7 +612,7 @@ def start():
|
||||||
statusString.set(info)
|
statusString.set(info)
|
||||||
|
|
||||||
# Increase done and write to output
|
# Increase done and write to output
|
||||||
done += chunkSize if not reedsolo else 1104905
|
done += 1104905 if (reedsolo and decrypting) else chunkSize
|
||||||
fout.write(data)
|
fout.write(data)
|
||||||
|
|
||||||
# Show appropriate notice if file corrupted or modified
|
# Show appropriate notice if file corrupted or modified
|
||||||
|
|
Loading…
Reference in New Issue