From fba5475b2d131f464ffeca219da8fddefdae0677 Mon Sep 17 00:00:00 2001 From: Tlntin Date: Thu, 6 Apr 2023 20:59:23 +0800 Subject: [PATCH] Fix the problem that the status bar configuration does not take effect --- src-tauri/src/app/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/src/app/config.rs b/src-tauri/src/app/config.rs index 0119218..048e202 100644 --- a/src-tauri/src/app/config.rs +++ b/src-tauri/src/app/config.rs @@ -58,6 +58,6 @@ impl PakeConfig { #[cfg(not(target_os = "macos"))] pub fn show_system_tray(&self) -> bool { - self.menu.copied() + self.system_tray.copied() } }