From ea7c3a23fb2eb0f2c5d811eec3337897886482ee Mon Sep 17 00:00:00 2001 From: "Joseph T. Lyons" Date: Sun, 3 Aug 2025 19:25:23 -0400 Subject: [PATCH] Add option to open settings profile selector in user menu (#35556) Release Notes: - N/A --- crates/title_bar/src/title_bar.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/crates/title_bar/src/title_bar.rs b/crates/title_bar/src/title_bar.rs index 426d87ad13..a8b16d881f 100644 --- a/crates/title_bar/src/title_bar.rs +++ b/crates/title_bar/src/title_bar.rs @@ -682,6 +682,10 @@ impl TitleBar { ) .separator() .action("Settings", zed_actions::OpenSettings.boxed_clone()) + .action( + "Settings Profiles", + zed_actions::settings_profile_selector::Toggle.boxed_clone(), + ) .action("Key Bindings", Box::new(keybindings::OpenKeymapEditor)) .action( "Themes…", @@ -726,6 +730,10 @@ impl TitleBar { .menu(|window, cx| { ContextMenu::build(window, cx, |menu, _, _| { menu.action("Settings", zed_actions::OpenSettings.boxed_clone()) + .action( + "Settings Profiles", + zed_actions::settings_profile_selector::Toggle.boxed_clone(), + ) .action("Key Bindings", Box::new(keybindings::OpenKeymapEditor)) .action( "Themes…",