mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-06 21:44:16 +02:00
[view.prepare] enhancement: skip button enabled after 10 seconds
This commit is contained in:
@@ -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/).
|
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
|
## [0.10.5] 2022-12-17
|
||||||
|
|
||||||
### Fixes
|
### Fixes
|
||||||
|
|||||||
@@ -133,7 +133,7 @@ class EnableSkip(QThread):
|
|||||||
ti = datetime.datetime.now()
|
ti = datetime.datetime.now()
|
||||||
|
|
||||||
while True:
|
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()
|
self.signal_timeout.emit()
|
||||||
break
|
break
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user