diff options
author | Trial97 <alexandru.tripon97@gmail.com> | 2023-07-21 19:30:06 +0300 |
---|---|---|
committer | Trial97 <alexandru.tripon97@gmail.com> | 2023-07-21 19:30:06 +0300 |
commit | 0b74b3833a95598d1770d7bd98acf15f2582ccb6 (patch) | |
tree | e6c2dc266c06d6475347c7d5480b692dedf86901 /launcher/ui/instanceview | |
parent | ef21879df4f7c2822381e1b6af4901e0e6b0d339 (diff) | |
parent | 821dd8400b1a27ab1f932200bfa77d7a04edef5d (diff) | |
download | PrismLauncher-0b74b3833a95598d1770d7bd98acf15f2582ccb6.tar.gz PrismLauncher-0b74b3833a95598d1770d7bd98acf15f2582ccb6.tar.bz2 PrismLauncher-0b74b3833a95598d1770d7bd98acf15f2582ccb6.zip |
Merge branch 'develop' of https://github.com/PrismLauncher/PrismLauncher into import
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(); } |