From 0a9ccb9f8b5b7b855128353a3dd33d7daab4729d Mon Sep 17 00:00:00 2001 From: Matthias Puchner <github@mpuchner.de> Date: Mon, 2 Aug 2021 13:27:50 +0200 Subject: [PATCH] rectify icon path --- GUI/Views/SampleDesigner/ParticleView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GUI/Views/SampleDesigner/ParticleView.cpp b/GUI/Views/SampleDesigner/ParticleView.cpp index 65a5f812928..2b7ee1b337f 100644 --- a/GUI/Views/SampleDesigner/ParticleView.cpp +++ b/GUI/Views/SampleDesigner/ParticleView.cpp @@ -98,7 +98,7 @@ void ParticleView::updatePixmap() return; QString ff_type = dynamic_cast<ParticleItem*>(getItem())->formFactorItem()->currentType(); - QString filename = QString(":/widgetbox/images/ff_%1_64x64.png").arg(ff_type); + QString filename = QString(":/SampleDesignerToolbox/images/ff_%1_64x64.png").arg(ff_type); m_pixmap = QPixmap(filename); } -- GitLab