Browse Source
Merge pull request #12521 from ReillyBrogan/fix-wayland-appid
Fix Wayland appId
pull/15/merge
liamwhite
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
0 deletions
-
src/yuzu/main.cpp
|
|
|
@ -5342,6 +5342,10 @@ int main(int argc, char* argv[]) { |
|
|
|
if (QString::fromLocal8Bit(qgetenv("DISPLAY")).isEmpty()) { |
|
|
|
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
|
|
|
|
|
|
|
|
SetHighDPIAttributes(); |
|
|
|
|