1
0
mirror of https://github.com/lencx/ChatGPT.git synced 2024-10-01 01:06:13 -04:00

fix(src-tauri/src/app/menu.rs): warning on linux

add `#[cfg(target_os = "macos")]` when declare titlebar and titlebar_menu
This commit is contained in:
xueweiwujxw 2022-12-27 20:50:23 +08:00 committed by lencx
parent 54b5b63f0e
commit cd6cece45e

View File

@ -29,6 +29,7 @@ pub fn init() -> Menu {
let stay_on_top =
CustomMenuItem::new("stay_on_top".to_string(), "Stay On Top").accelerator("CmdOrCtrl+T");
#[cfg(target_os = "macos")]
let titlebar =
CustomMenuItem::new("titlebar".to_string(), "Titlebar").accelerator("CmdOrCtrl+B");
let theme_light = CustomMenuItem::new("theme_light".to_string(), "Light");
@ -40,6 +41,7 @@ pub fn init() -> Menu {
} else {
stay_on_top
};
#[cfg(target_os = "macos")]
let titlebar_menu = if chat_conf.titlebar {
titlebar.selected()
} else {