From 5e4be013af9c66a6addf1000ab7932212ed6d3c0 Mon Sep 17 00:00:00 2001 From: Finn Evers Date: Thu, 1 May 2025 10:19:02 +0200 Subject: [PATCH] zed: Fix application menu capitalization (#29722) This PR is a quick follow-up to #29717 to ensure that the action within the app menu has the same capitalization as in the context menu. Release Notes: - N/A --- crates/zed/src/zed/app_menus.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/zed/src/zed/app_menus.rs b/crates/zed/src/zed/app_menus.rs index ec310ebe1147227c47e22168dbfe429c76fa4e87..2bdcaa718df5da2857d00356b832a09ceda4611c 100644 --- a/crates/zed/src/zed/app_menus.rs +++ b/crates/zed/src/zed/app_menus.rs @@ -95,7 +95,7 @@ pub fn app_menus() -> Vec { MenuItem::separator(), MenuItem::os_action("Cut", editor::actions::Cut, OsAction::Cut), MenuItem::os_action("Copy", editor::actions::Copy, OsAction::Copy), - MenuItem::action("Copy and trim", editor::actions::CopyAndTrim), + MenuItem::action("Copy and Trim", editor::actions::CopyAndTrim), MenuItem::os_action("Paste", editor::actions::Paste, OsAction::Paste), MenuItem::separator(), MenuItem::action("Find", search::buffer_search::Deploy::find()),