diff --git a/crates/collab_ui/src/collab_titlebar_item.rs b/crates/collab_ui/src/collab_titlebar_item.rs index a234a2c28da35ce2138fe83fbaf30f4a09e77ad9..728552d996c39b31a43b214cb0d5efdaf86e691f 100644 --- a/crates/collab_ui/src/collab_titlebar_item.rs +++ b/crates/collab_ui/src/collab_titlebar_item.rs @@ -911,8 +911,8 @@ impl CollabTitlebarItem { ContextMenu::build(cx, |menu, _| { menu.action("Settings", zed_actions::OpenSettings.boxed_clone()) .action("Key Bindings", Box::new(zed_actions::OpenKeymap)) - .action("Themes", theme_selector::Toggle::default().boxed_clone()) - .action("Extensions...", extensions_ui::Extensions.boxed_clone()) + .action("Themes…", theme_selector::Toggle::default().boxed_clone()) + .action("Extensions", extensions_ui::Extensions.boxed_clone()) .separator() .action("Sign Out", client::SignOut.boxed_clone()) }) @@ -940,8 +940,8 @@ impl CollabTitlebarItem { ContextMenu::build(cx, |menu, _| { menu.action("Settings", zed_actions::OpenSettings.boxed_clone()) .action("Key Bindings", Box::new(zed_actions::OpenKeymap)) - .action("Themes", theme_selector::Toggle::default().boxed_clone()) - .action("Extensions...", extensions_ui::Extensions.boxed_clone()) + .action("Themes…", theme_selector::Toggle::default().boxed_clone()) + .action("Extensions", extensions_ui::Extensions.boxed_clone()) }) .into() })