Skip to content

Commit

Permalink
Merge branch 'main' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
ozankaraali authored Sep 28, 2024
2 parents bbb76bc + cea639e commit 66e1629
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ m3u-parser
pyqtdarktheme==2.1.0
PySide6
orjson
aiohttp
8 changes: 4 additions & 4 deletions video_player.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ def __init__(self, config_manager, *args, **kwargs):
self.resize_corner = None

# Initialize the inactivity timer and set up cursor hiding mechanism
self.inactivity_timer = QTimer(self)
self.inactivity_timer.setInterval(5000) # 5000 milliseconds = 5 seconds
self.inactivity_timer.timeout.connect(self.hide_cursor)
self.inactivity_timer.start()
# self.inactivity_timer = QTimer(self)
# self.inactivity_timer.setInterval(5000) # 5000 milliseconds = 5 seconds
# self.inactivity_timer.timeout.connect(self.hide_cursor)
# self.inactivity_timer.start()

# Set cursor visibility state
self.cursor_visible = True
Expand Down

0 comments on commit 66e1629

Please sign in to comment.