From a731ebc1b2d45fcc504ba5d6ae54a0e2d60da599 Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Wed, 27 Dec 2023 16:03:09 -0500 Subject: [PATCH] fix: set platform specific app id --- src/app/mod.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app/mod.rs b/src/app/mod.rs index 9ef1ed4..4921300 100644 --- a/src/app/mod.rs +++ b/src/app/mod.rs @@ -88,6 +88,10 @@ pub(crate) fn iced_settings( iced.default_text_size = iced::Pixels(settings.default_text_size); iced.exit_on_close_request = settings.exit_on_close; iced.id = Some(App::APP_ID.to_owned()); + #[cfg(all(not(feature = "wayland"), target_os = "linux"))] + { + iced.window.platform_specific.application_id = App::APP_ID.to_string(); + } #[cfg(feature = "wayland")] {