We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 985cc6e commit 21f229bCopy full SHA for 21f229b
openadapt/app/tray.py
@@ -44,7 +44,7 @@ def __init__(self) -> None:
44
self.app = QApplication([])
45
self.app.setQuitOnLastWindowClosed(False)
46
47
- self.icon = QIcon(f"{FPATH}{os.sep}assets{os.sep}logo_inverted.png")
+ self.icon = QIcon(f"{FPATH}{os.sep}assets{os.sep}logo.png")
48
49
self.tray = QSystemTrayIcon()
50
self.tray.setIcon(self.icon)
@@ -176,7 +176,7 @@ def show_app(self) -> None:
176
177
def run(self) -> None:
178
"""Run the system tray icon."""
179
- self.app.exec_()
+ self.app.exec()
180
181
182
def _run() -> None:
0 commit comments