diff --git a/CHANGELOG.md b/CHANGELOG.md index 98e0f9cc..94ab6f0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## NEXT +### Improvements +- UI + - the "Skip" button on the initialization panel is now enabled after 10 seconds [#310](https://github.com/vinifmor/bauh/issues/310) + ## [0.10.5] 2022-12-17 ### Fixes diff --git a/bauh/view/qt/prepare.py b/bauh/view/qt/prepare.py index 7b538455..89545431 100644 --- a/bauh/view/qt/prepare.py +++ b/bauh/view/qt/prepare.py @@ -133,7 +133,7 @@ class EnableSkip(QThread): ti = datetime.datetime.now() while True: - if datetime.datetime.now() >= ti + datetime.timedelta(minutes=1.5): + if datetime.datetime.now() >= ti + datetime.timedelta(seconds=10): self.signal_timeout.emit() break