From 8de2d7f7c8aa574b98563edb5a2270e3ede6a30f Mon Sep 17 00:00:00 2001 From: Martchus Date: Sat, 20 Jul 2019 20:59:13 +0200 Subject: [PATCH] Don't set organization domain to application URL Otherwise window icons are not shown correctly under Wayland. --- resources/resources.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/resources.h b/resources/resources.h index 1485a9a..f702727 100644 --- a/resources/resources.h +++ b/resources/resources.h @@ -16,7 +16,7 @@ QT_FORWARD_DECLARE_CLASS(QSettings) */ #define SET_QT_APPLICATION_INFO \ QCoreApplication::setOrganizationName(QStringLiteral(APP_AUTHOR)); \ - QCoreApplication::setOrganizationDomain(QStringLiteral(APP_URL)); \ + QCoreApplication::setOrganizationDomain(QStringLiteral(APP_DOMAIN)); \ QCoreApplication::setApplicationName(QStringLiteral(APP_NAME)); \ QCoreApplication::setApplicationVersion(QStringLiteral(APP_VERSION)); \ QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps, true)