diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-08-15 10:43:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-15 10:43:29 +0200 |
commit | 7ba1e7d3569fcb04cb49d16247703bf2862172ba (patch) | |
tree | 9eb12949538323c2afa9545907057c4e575ce7c2 /launcher/ui/instanceview/InstanceView.cpp | |
parent | f533173b9589a0c3bfca0845b0c3939f5131c018 (diff) | |
parent | 6ce7e426d2e3bbca74719da073eb46d05b001439 (diff) | |
download | PrismLauncher-7ba1e7d3569fcb04cb49d16247703bf2862172ba.tar.gz PrismLauncher-7ba1e7d3569fcb04cb49d16247703bf2862172ba.tar.bz2 PrismLauncher-7ba1e7d3569fcb04cb49d16247703bf2862172ba.zip |
Merge pull request #1407 from TheKodeToad/icon-indexing
Diffstat (limited to 'launcher/ui/instanceview/InstanceView.cpp')
-rw-r--r-- | launcher/ui/instanceview/InstanceView.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/ui/instanceview/InstanceView.cpp b/launcher/ui/instanceview/InstanceView.cpp index 607f3cad..690dc917 100644 --- a/launcher/ui/instanceview/InstanceView.cpp +++ b/launcher/ui/instanceview/InstanceView.cpp @@ -47,8 +47,8 @@ #include <QScrollBar> #include <QtMath> -#include <QDebug> #include "VisualGroup.h" +#include "ui/themes/ThemeManager.h" #include <Application.h> #include <InstanceList.h> @@ -446,7 +446,7 @@ void InstanceView::setPaintCat(bool visible) { m_catVisible = visible; if (visible) - m_catPixmap.load(APPLICATION->getCatPack()); + m_catPixmap.load(APPLICATION->themeManager()->getCatPack()); else m_catPixmap = QPixmap(); } |