[ui] -> progress bar speed reduced

This commit is contained in:
Vinicius Moreira
2021-06-18 15:24:27 -03:00
parent c2493befda
commit 81ad611347
2 changed files with 6 additions and 2 deletions

View File

@@ -9,6 +9,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Arch
- install/upgrade/downgrade: some dependencies not being matched during comparisons between numeric and alphanumeric versions
### UI
- progress bar speed reduced
## [0.9.17] 2021-06-16
### Improvements

View File

@@ -762,7 +762,7 @@ class AnimateProgress(QThread):
def __init__(self):
super(AnimateProgress, self).__init__()
self.progress_value = 0
self.increment = 5
self.increment = 3
self.stop = False
self.limit = 100
self.wait_time = 50
@@ -772,7 +772,7 @@ class AnimateProgress(QThread):
def _reset(self):
self.progress_value = 0
self.increment = 5
self.increment = 3
self.stop = False
self.limit = 100
self.wait_time = 50