mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-30 10:42:37 +02:00
Fix missing SysTray
Object needed to be bound to some variable
This commit is contained in:
parent
16dfa477b4
commit
bdc08d79cd
1 changed files with 2 additions and 1 deletions
|
@ -79,7 +79,8 @@ def gui_main(filename):
|
||||||
signal.signal(signal.SIGINT, signal.SIG_DFL)
|
signal.signal(signal.SIGINT, signal.SIG_DFL)
|
||||||
|
|
||||||
# Create the system tray
|
# Create the system tray
|
||||||
SysTray(global_common, gui_common, app)
|
# noinspection PyUnusedLocal
|
||||||
|
systray = SysTray(global_common, gui_common, app)
|
||||||
|
|
||||||
closed_windows = {}
|
closed_windows = {}
|
||||||
windows = {}
|
windows = {}
|
||||||
|
|
Loading…
Reference in a new issue