diff options
author | fn2006 <usernamefn2006alreadyused@protonmail.com> | 2022-10-29 16:10:18 +0100 |
---|---|---|
committer | fn2006 <usernamefn2006alreadyused@protonmail.com> | 2022-10-29 16:42:37 +0100 |
commit | b142a6da5b2ae433ce8164c7be0a3c3870131414 (patch) | |
tree | 65731782357964e7bf2498c628a25d0770b00584 /launcher/Application.cpp | |
parent | 1c0139c5f41592ba2b60465496f54097bf43e02b (diff) | |
download | PrismLauncher-b142a6da5b2ae433ce8164c7be0a3c3870131414.tar.gz PrismLauncher-b142a6da5b2ae433ce8164c7be0a3c3870131414.tar.bz2 PrismLauncher-b142a6da5b2ae433ce8164c7be0a3c3870131414.zip |
fix hardcoded svg
Signed-off-by: fn2006 <usernamefn2006alreadyused@protonmail.com>
Diffstat (limited to 'launcher/Application.cpp')
-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); } |