Skip to content
This repository was archived by the owner on Aug 8, 2025. It is now read-only.

Commit 34df345

Browse files
committed
Increased splash timeout to 5sec
1 parent a07e6e2 commit 34df345

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

main.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,12 @@ def __init__(self):
1717
self.timer = QTimer()
1818
self.timer.setSingleShot(True)
1919
self.timer.timeout.connect(self.show_menu)
20-
self.timer.start(2000)
20+
self.timer.start(5000)
2121

2222
def show_menu(self):
2323
self.splash_window.hide()
2424
self.manager_window.show()
2525

26-
2726
def run(self):
2827
sys.exit(self.app.exec())
2928

0 commit comments

Comments
 (0)