Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

[QUAD] Tray Icon: Fix double click delay (way too fast / impossible to trigger) #6349

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion openpype/tools/tray/pype_tray.py
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ class SystemTrayIcon(QtWidgets.QSystemTrayIcon):
:type parent: QtWidgets.QMainWindow
"""

doubleclick_time_ms = 100
doubleclick_time_ms = 500

def __init__(self, parent):
icon = QtGui.QIcon(resources.get_openpype_icon_filepath())
Expand Down
Loading