diff options
author | TheKodeToad <TheKodeToad@proton.me> | 2023-07-21 12:48:05 +0100 |
---|---|---|
committer | TheKodeToad <TheKodeToad@proton.me> | 2023-07-21 12:48:05 +0100 |
commit | f8b935ab37ccc2dfd70412ef11029b79c88b14f0 (patch) | |
tree | cbe799ada6c0ce1040cf60d2da2ab7c4cfdfbb13 /launcher/ui/instanceview | |
parent | 5088d33fd2aec8fed9725f9dedb64e9629226c11 (diff) | |
parent | 821dd8400b1a27ab1f932200bfa77d7a04edef5d (diff) | |
download | PrismLauncher-f8b935ab37ccc2dfd70412ef11029b79c88b14f0.tar.gz PrismLauncher-f8b935ab37ccc2dfd70412ef11029b79c88b14f0.tar.bz2 PrismLauncher-f8b935ab37ccc2dfd70412ef11029b79c88b14f0.zip |
Merge remote-tracking branch 'upstream/develop' into icon-indexing
Diffstat (limited to 'launcher/ui/instanceview')
-rw-r--r-- | launcher/ui/instanceview/InstanceView.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/launcher/ui/instanceview/InstanceView.cpp b/launcher/ui/instanceview/InstanceView.cpp index 1911dd59..05f0004d 100644 --- a/launcher/ui/instanceview/InstanceView.cpp +++ b/launcher/ui/instanceview/InstanceView.cpp @@ -48,7 +48,6 @@ #include <QAccessible> #include "VisualGroup.h" -#include "ui/themes/ThemeManager.h" #include <QDebug> #include <Application.h> @@ -504,7 +503,7 @@ void InstanceView::setPaintCat(bool visible) { m_catVisible = visible; if (visible) - m_catPixmap.load(QString(":/backgrounds/%1").arg(ThemeManager::getCatImage())); + m_catPixmap.load(APPLICATION->getCatPack()); else m_catPixmap = QPixmap(); } |