Skip to content

Commit

Permalink
fix(app): use default logo for tray icon
Browse files Browse the repository at this point in the history
  • Loading branch information
abrichr authored Mar 8, 2024
1 parent 985cc6e commit 21f229b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openadapt/app/tray.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def __init__(self) -> None:
self.app = QApplication([])
self.app.setQuitOnLastWindowClosed(False)

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")

self.tray = QSystemTrayIcon()
self.tray.setIcon(self.icon)
Expand Down Expand Up @@ -176,7 +176,7 @@ def show_app(self) -> None:

def run(self) -> None:
"""Run the system tray icon."""
self.app.exec_()
self.app.exec()


def _run() -> None:
Expand Down

0 comments on commit 21f229b

Please sign in to comment.