diff options
author | Petr Mrázek <peterix@gmail.com> | 2015-03-01 22:20:57 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2015-03-01 22:20:57 +0100 |
commit | ceec70e014db629aa8ba3472839cc42781d73d4c (patch) | |
tree | 1de0150b51fceb85d9ffa330b3dcd70580b33082 /gui/dialogs/AboutDialog.cpp | |
parent | ef34cafe174271a423418d7eb68c4b4096642223 (diff) | |
download | PrismLauncher-ceec70e014db629aa8ba3472839cc42781d73d4c.tar.gz PrismLauncher-ceec70e014db629aa8ba3472839cc42781d73d4c.tar.bz2 PrismLauncher-ceec70e014db629aa8ba3472839cc42781d73d4c.zip |
GH-796 Icon theme loading workaround
Replacing the Qt machinery with other Qt machinery under our control
Diffstat (limited to 'gui/dialogs/AboutDialog.cpp')
-rw-r--r-- | gui/dialogs/AboutDialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/dialogs/AboutDialog.cpp b/gui/dialogs/AboutDialog.cpp index bacdc2fd..6b31113c 100644 --- a/gui/dialogs/AboutDialog.cpp +++ b/gui/dialogs/AboutDialog.cpp @@ -81,7 +81,7 @@ AboutDialog::AboutDialog(QWidget *parent) : QDialog(parent), ui(new Ui::AboutDia ui->urlLabel->setOpenExternalLinks(true); - ui->icon->setPixmap(QIcon::fromTheme("multimc").pixmap(64)); + ui->icon->setPixmap(MMC->getThemedIcon("multimc").pixmap(64)); ui->title->setText("MultiMC 5 " + BuildConfig.printableVersionString()); ui->versionLabel->setText(tr("Version") +": " + BuildConfig.printableVersionString()); |