Skip to content

Commit

Permalink
fix: attache systray icon to application
Browse files Browse the repository at this point in the history
Signed-off-by: Sylvain Leclerc <[email protected]>
  • Loading branch information
sylvlecl committed Sep 30, 2024
1 parent cb7b55b commit ea8ec2c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion antarest/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from multiprocessing import Process
from pathlib import Path
from threading import Thread
from typing import Tuple

import httpx
import uvicorn
Expand Down Expand Up @@ -123,7 +124,7 @@ def notification_popup(message: str) -> None:
title="AntaresWebServer",
message=message,
app_name="AntaresWebServer",
app_icon=RESOURCE_PATH / "webapp" / "favicon.ico",
app_icon=str(RESOURCE_PATH / "webapp" / "favicon.ico"),
timeout=600,
)

Expand Down

0 comments on commit ea8ec2c

Please sign in to comment.