Fix missing SysTray

Object needed to be bound to some variable
This commit is contained in:
Guthrie McAfee Armstrong 2022-06-04 15:36:01 -04:00
parent 16dfa477b4
commit bdc08d79cd
No known key found for this signature in database
GPG key ID: ED4DAE89F08242D2

View file

@ -79,7 +79,8 @@ def gui_main(filename):
signal.signal(signal.SIGINT, signal.SIG_DFL)
# Create the system tray
SysTray(global_common, gui_common, app)
# noinspection PyUnusedLocal
systray = SysTray(global_common, gui_common, app)
closed_windows = {}
windows = {}