From d37333c569220ed164b4b4071041bd5be128cded Mon Sep 17 00:00:00 2001 From: Samuel Walker Date: Thu, 20 Jun 2024 16:17:24 -0600 Subject: [PATCH] Fixed display gitchyness --- Backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Backend.py b/Backend.py index 9996a8c..4c36062 100644 --- a/Backend.py +++ b/Backend.py @@ -203,8 +203,8 @@ def ftpDownload(ftp, file, stream): time_left = (size-total)/(total/(time.time()-start)) ETA.set("ETA: " + str(datetime.timedelta(seconds=math.ceil(time_left)))) pbar.set(total/size) - dialog.update() timer = time.time() + dialog.update() ftp.retrbinary("RETR " + file, downloadCallback) dialog.quit()