From 4a5ea8e34987f5dcddb79ba59f070622cc58ee40 Mon Sep 17 00:00:00 2001 From: ch-sa Date: Sun, 18 Aug 2024 17:52:37 +0200 Subject: [PATCH] Use posix path also on windows for stylesheet Relates: #163 --- labelCloud/view/gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labelCloud/view/gui.py b/labelCloud/view/gui.py index 631b70a..df8c58a 100644 --- a/labelCloud/view/gui.py +++ b/labelCloud/view/gui.py @@ -131,7 +131,7 @@ def __init__(self, control: "Controller") -> None: Path(__file__) .resolve() .parent.parent.joinpath("resources") - .joinpath("icons") + .joinpath("icons").as_posix() ) ) )