Fix menu capitalization (#44450)

This PR fixes fixes capitalization of two menu items for consistency
elsewhere in the application.

Release Notes:

- N/A
This commit is contained in:
Aaron Feickert
2025-12-09 10:55:01 -03:00
committed by GitHub
parent 4d0cada8f4
commit f05ee8a24d
+2 -2
View File
@@ -169,7 +169,7 @@ pub fn app_menus(cx: &mut App) -> Vec<Menu> {
MenuItem::os_action("Paste", editor::actions::Paste, OsAction::Paste),
MenuItem::separator(),
MenuItem::action("Find", search::buffer_search::Deploy::find()),
MenuItem::action("Find In Project", workspace::DeploySearch::find()),
MenuItem::action("Find in Project", workspace::DeploySearch::find()),
MenuItem::separator(),
MenuItem::action(
"Toggle Line Comment",
@@ -280,7 +280,7 @@ pub fn app_menus(cx: &mut App) -> Vec<Menu> {
MenuItem::separator(),
MenuItem::action("Toggle Breakpoint", editor::actions::ToggleBreakpoint),
MenuItem::action("Edit Breakpoint", editor::actions::EditLogBreakpoint),
MenuItem::action("Clear all Breakpoints", debugger_ui::ClearAllBreakpoints),
MenuItem::action("Clear All Breakpoints", debugger_ui::ClearAllBreakpoints),
],
},
Menu {