From 061d9af073f52f9883c34a67b67533e588c1ed92 Mon Sep 17 00:00:00 2001 From: Thiago Franco de Moraes Date: Fri, 10 Sep 2021 19:51:00 -0300 Subject: [PATCH] Making it possible to start invesalius outside of invesalius folder --- app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 0f54767..90ddcf8 100644 --- a/app.py +++ b/app.py @@ -209,9 +209,9 @@ class Inv3SplashScreen(SplashScreen): else: - path = os.path.join(".","icons", icon_file) + path = os.path.join(inv_paths.ICON_DIR, icon_file) if not os.path.exists(path): - path = os.path.join(".", "icons", "splash_en.png") + path = os.path.join(inv_paths.ICON_DIR, "splash_en.png") bmp = wx.Image(path).ConvertToBitmap() -- libgit2 0.21.2