fix(settings): reorder window settings and change default values

Move "minimize to tray on close" to the bottom of window settings.
Change skipClaudeOnboarding default to false.
This commit is contained in:
Jason
2026-01-22 23:35:41 +08:00
parent 62a4ab2ad3
commit cfb113ac8d
3 changed files with 15 additions and 15 deletions

View File

@@ -73,7 +73,7 @@ pub struct AppSettings {
#[serde(default)]
pub enable_claude_plugin_integration: bool,
/// 是否跳过 Claude Code 初次安装确认
#[serde(default = "default_true")]
#[serde(default)]
pub skip_claude_onboarding: bool,
/// 是否开机自启
#[serde(default)]
@@ -124,7 +124,7 @@ impl Default for AppSettings {
show_in_tray: true,
minimize_to_tray_on_close: true,
enable_claude_plugin_integration: false,
skip_claude_onboarding: true,
skip_claude_onboarding: false,
launch_on_startup: false,
language: None,
visible_apps: None,