Browse Source

fix(wayland): Fix desktop file name in Qt properties

fixes #5141
reviewable/pr5142/r1
Andrius Štikonas 7 years ago
parent
commit
c1caeb585a
  1. 3
      src/main.cpp

3
src/main.cpp

@ -161,6 +161,9 @@ int main(int argc, char* argv[]) @@ -161,6 +161,9 @@ int main(int argc, char* argv[])
#endif
a->setApplicationName("qTox");
#if QT_VERSION >= QT_VERSION_CHECK(5, 7, 0)
a->setDesktopFileName("io.github.qtox.qTox");
#endif
a->setOrganizationName("Tox");
a->setApplicationVersion("\nGit commit: " + QString(GIT_VERSION));

Loading…
Cancel
Save