ayon-core/pype/tools/tray/__main__.py
2020-08-15 02:39:55 +02:00

12 lines
232 B
Python

import os
import sys
import pype_tray
app = pype_tray.PypeTrayApplication()
if os.name == "nt":
import ctypes
ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID(
u"pype_tray"
)
sys.exit(app.exec_())