We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1b04cf commit a562464Copy full SHA for a562464
app/desktop/desktop.py
@@ -130,9 +130,12 @@ def run_tray(self):
130
self.tray.run_detached()
131
except Exception:
132
logger.error("Error running tray", exc_info=True)
133
- # Tray not starting on MacOS or Windows is critical. Let Linux continue to start the app.
134
- if sys.platform in ["darwin", "Windows", "win32"]:
+ # Tray not starting on MacOS or Windows is critical.
+ # Let Linux continue to start the app as tray is more fragmented there and requires system deps.
135
+ if sys.platform in ["darwin", "win32"]:
136
raise
137
+ else:
138
+ self.tray = None
139
140
def close_splash(self):
141
try:
0 commit comments