From 44512de33dabac468f1cfe06dd7c124a29ef0efe Mon Sep 17 00:00:00 2001 From: Philip Date: Tue, 4 Oct 2022 13:43:59 -0700 Subject: [PATCH] Attempting to fix missing collapse issue #65 --- src/qrave_toolbar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qrave_toolbar.py b/src/qrave_toolbar.py index d5dbf29..db72067 100644 --- a/src/qrave_toolbar.py +++ b/src/qrave_toolbar.py @@ -120,7 +120,7 @@ def initGui(self): self.openProjectAction.setStatusTip('Open QRAVE project') self.openProjectAction.setWhatsThis('Open QRAVE project') - self.closeAllProjectsAction = QAction(QIcon(':plugins/qrave_toolbar/collapse.png'), self.tr(u'Close All Riverscapes Projects'), self.iface.mainWindow()) + self.closeAllProjectsAction = QAction(QIcon(':/plugins/qrave_toolbar/collapse.png'), self.tr(u'Close All Riverscapes Projects'), self.iface.mainWindow()) self.closeAllProjectsAction.triggered.connect(self.closeAllProjects) self.closeAllProjectsAction.setStatusTip('Close all open Riverscapes projects')