From e9b81e347599b61ed7436c7d521af3a935582ffc Mon Sep 17 00:00:00 2001 From: rustdesk Date: Thu, 27 Aug 2026 11:47:36 +0800 Subject: [PATCH] typo --- src/tray.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tray.rs b/src/tray.rs index 4ccc921bd..f585b3f42 100644 --- a/src/tray.rs +++ b/src/tray.rs @@ -153,7 +153,7 @@ fn make_tray() -> hbb_common::ResultType<()> { // We create the icon once the event loop is actually running // to prevent issues like https://github.com/tauri-apps/tray-icon/issues/90 let mut builder = TrayIconBuilder::new() - .with_id(create::get_app_name().to_lowercase()) + .with_id(crate::get_app_name().to_lowercase()) .with_menu(Box::new(tray_menu.clone())) .with_tooltip(tooltip(0)) .with_icon(icon.clone());