From ea8ec2ced8673ae6a0b5c8d83d6fba691f95d5d3 Mon Sep 17 00:00:00 2001 From: Sylvain Leclerc Date: Mon, 30 Sep 2024 11:43:21 +0200 Subject: [PATCH] fix: attache systray icon to application Signed-off-by: Sylvain Leclerc --- antarest/gui.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/antarest/gui.py b/antarest/gui.py index 8ca213d2c6..66e0b87252 100644 --- a/antarest/gui.py +++ b/antarest/gui.py @@ -18,6 +18,7 @@ from multiprocessing import Process from pathlib import Path from threading import Thread +from typing import Tuple import httpx import uvicorn @@ -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, )