From 06b5c4631f2d71d6512e27cac2f8f5aee7fefbb4 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sat, 11 Oct 2025 00:36:54 -0500 Subject: [PATCH] Fix warning for unnecessary .desktop suffix passed to setDesktopFileName() --- app/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.cpp b/app/main.cpp index db19a8c9..fb09f5bf 100644 --- a/app/main.cpp +++ b/app/main.cpp @@ -694,7 +694,7 @@ int main(int argc, char *argv[]) #endif // This is necessary to show our icon correctly on Wayland - app.setDesktopFileName("com.moonlight_stream.Moonlight.desktop"); + app.setDesktopFileName("com.moonlight_stream.Moonlight"); qputenv("SDL_VIDEO_WAYLAND_WMCLASS", "com.moonlight_stream.Moonlight"); qputenv("SDL_VIDEO_X11_WMCLASS", "com.moonlight_stream.Moonlight");