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
This commit is contained in:
Finn Evers 2025-05-01 10:19:02 +02:00 committed by GitHub
parent f055dca592
commit 5e4be013af
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -95,7 +95,7 @@ pub fn app_menus() -> Vec<Menu> {
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()),