Skip to content
Snippets Groups Projects
Unverified Commit 6c6cb574 authored by liamwhite's avatar liamwhite Committed by GitHub
Browse files

Merge pull request #12521 from ReillyBrogan/fix-wayland-appid

Fix Wayland appId
parents 3262c0f7 cb4b4f3d
No related branches found
No related tags found
No related merge requests found
...@@ -5342,6 +5342,10 @@ int main(int argc, char* argv[]) { ...@@ -5342,6 +5342,10 @@ int main(int argc, char* argv[]) {
if (QString::fromLocal8Bit(qgetenv("DISPLAY")).isEmpty()) { if (QString::fromLocal8Bit(qgetenv("DISPLAY")).isEmpty()) {
qputenv("DISPLAY", ":0"); qputenv("DISPLAY", ":0");
} }
// Fix the Wayland appId. This needs to match the name of the .desktop file without the .desktop
// suffix.
QGuiApplication::setDesktopFileName(QStringLiteral("org.yuzu_emu.yuzu"));
#endif #endif
SetHighDPIAttributes(); SetHighDPIAttributes();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment