diff options
author | txtsd <code@ihavea.quest> | 2022-10-30 01:51:14 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-30 01:51:14 +0530 |
commit | 87b0d3fe11c1134bf17e1027fda7125f77e09821 (patch) | |
tree | 1094a20def988e49f17025c5015001d2d2fafc4f /launcher | |
parent | 1c0139c5f41592ba2b60465496f54097bf43e02b (diff) | |
parent | 98891a036dcd96dc7d9bf6b8f11c2a5f2ddd054e (diff) | |
download | PrismLauncher-87b0d3fe11c1134bf17e1027fda7125f77e09821.tar.gz PrismLauncher-87b0d3fe11c1134bf17e1027fda7125f77e09821.tar.bz2 PrismLauncher-87b0d3fe11c1134bf17e1027fda7125f77e09821.zip |
Merge pull request #342 from fn2006/prism-svg-fix
Diffstat (limited to 'launcher')
-rw-r--r-- | launcher/Application.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/Application.cpp b/launcher/Application.cpp index f6b41850..c6814abf 100644 --- a/launcher/Application.cpp +++ b/launcher/Application.cpp @@ -1177,7 +1177,7 @@ void Application::setIconTheme(const QString& name) QIcon Application::getThemedIcon(const QString& name) { if(name == "logo") { - return QIcon(":/org.prismlauncher.PrismLauncher.svg"); // FIXME: Make this a BuildConfig variable + return QIcon(":/" + BuildConfig.LAUNCHER_SVGFILENAME); } return QIcon::fromTheme(name); } |