修复变量命名错误

This commit is contained in:
Tlntin
2022-12-28 13:03:46 +08:00
parent 83b745a2d0
commit 35ac354d12

View File

@@ -49,10 +49,10 @@ pub mod pake {
#[cfg(target_os = "macos")] #[cfg(target_os = "macos")]
let tray_status = self.system_tray.macos; let tray_status = self.system_tray.macos;
#[cfg(target_os = "linux")] #[cfg(target_os = "linux")]
let tary_status = self.system_tray.linux; let tray_status = self.system_tray.linux;
#[cfg(target_os = "windows")] #[cfg(target_os = "windows")]
let tary_status = self.system_tray.windows; let tray_status = self.system_tray.windows;
tary_status tray_status
} }
} }
} }