Don't set organization domain to application URL

Otherwise window icons are not shown correctly under Wayland.
This commit is contained in:
Martchus 2019-07-20 20:59:13 +02:00
parent 3c4ff02a96
commit 8de2d7f7c8
1 changed files with 1 additions and 1 deletions

View File

@ -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)