summaryrefslogtreecommitdiff
path: root/src/yuzu/main.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-12-30 14:58:52 -0500
committerGitHub <noreply@github.com>2023-12-30 14:58:52 -0500
commit6c6cb5745ffc197b44b83a8e6393d237021dc846 (patch)
tree8fb1c6288fca29cccaacecde8f7e2d6b944271c9 /src/yuzu/main.cpp
parent3262c0f747eb33c37527b8e11fd2caf778121b45 (diff)
parentcb4b4f3d6e531a67df9641f791ade284ffd507cb (diff)
Merge pull request #12521 from ReillyBrogan/fix-wayland-appid
Fix Wayland appId
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r--src/yuzu/main.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index 059fcf041..c789c1e59 100644
--- a/src/yuzu/main.cpp
+++ b/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();