From 6b8984279f2e6448f2f20ef2e07b052bbf91de3f Mon Sep 17 00:00:00 2001 From: Max Date: Thu, 7 Mar 2024 16:59:33 +0100 Subject: [PATCH] Pluralize and order user menu items for consistency (#9013) Release Notes: - N/A --- crates/collab_ui/src/collab_titlebar_item.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/collab_ui/src/collab_titlebar_item.rs b/crates/collab_ui/src/collab_titlebar_item.rs index 1f8218866719a39dcea6eb8f7b55bb45aa839e4a..fc4c2b93c74d944e67e9aea6a432411fdf60684b 100644 --- a/crates/collab_ui/src/collab_titlebar_item.rs +++ b/crates/collab_ui/src/collab_titlebar_item.rs @@ -698,7 +698,7 @@ impl CollabTitlebarItem { ContextMenu::build(cx, |menu, _| { menu.action("Settings", zed_actions::OpenSettings.boxed_clone()) .action("Extensions", extensions_ui::Extensions.boxed_clone()) - .action("Theme...", theme_selector::Toggle.boxed_clone()) + .action("Themes...", theme_selector::Toggle.boxed_clone()) .separator() .action("Share Feedback...", feedback::GiveFeedback.boxed_clone()) .action("Sign Out", client::SignOut.boxed_clone()) @@ -722,8 +722,8 @@ impl CollabTitlebarItem { .menu(|cx| { ContextMenu::build(cx, |menu, _| { menu.action("Settings", zed_actions::OpenSettings.boxed_clone()) - .action("Theme...", theme_selector::Toggle.boxed_clone()) .action("Extensions", extensions_ui::Extensions.boxed_clone()) + .action("Themes...", theme_selector::Toggle.boxed_clone()) .separator() .action("Share Feedback...", feedback::GiveFeedback.boxed_clone()) })