aboutsummaryrefslogtreecommitdiff
path: root/launcher/Application.cpp
diff options
context:
space:
mode:
authorfn2006 <usernamefn2006alreadyused@protonmail.com>2022-10-29 16:10:18 +0100
committerfn2006 <usernamefn2006alreadyused@protonmail.com>2022-10-29 16:42:37 +0100
commitb142a6da5b2ae433ce8164c7be0a3c3870131414 (patch)
tree65731782357964e7bf2498c628a25d0770b00584 /launcher/Application.cpp
parent1c0139c5f41592ba2b60465496f54097bf43e02b (diff)
downloadPrismLauncher-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.cpp2
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);
}