From 1906396ed0e0feda02423387df61d4ceb2aeedb0 Mon Sep 17 00:00:00 2001 From: Jonathan Foster Date: Tue, 19 Sep 2023 11:04:27 -0400 Subject: [PATCH] Update splash screen path Update path for new directory structure so that loading splash screen displays --- glue_qt/app/splash_screen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glue_qt/app/splash_screen.py b/glue_qt/app/splash_screen.py index f16c700a9..e20582db1 100644 --- a/glue_qt/app/splash_screen.py +++ b/glue_qt/app/splash_screen.py @@ -24,7 +24,7 @@ def __init__(self, *args, **kwargs): self.layout.addStretch() self.layout.addWidget(self.progress) - pth = os.path.join(os.path.dirname(__file__), '..', '..', 'logo.png') + pth = os.path.join(os.path.dirname(__file__), '..', 'logo.png') self.image = QtGui.QPixmap(pth) def set_progress(self, value):