From 9e0a4c2a9cff70b01d2b010385dc870dd29ae394 Mon Sep 17 00:00:00 2001 From: Finn Evers Date: Mon, 8 Dec 2025 14:19:54 +0100 Subject: [PATCH] terminal_view: Fix casing of popover menu entry (#44377) This ensures that the casing of this entry aligns with other entries in the app popover Menus. Release Notes: - N/A --------- Co-authored-by: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com> --- crates/terminal_view/src/terminal_panel.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/terminal_view/src/terminal_panel.rs b/crates/terminal_view/src/terminal_panel.rs index 941689514d806acffb54fc0bfb8ecad86c1d2e70..4ccf639507cd53ba9779ce18c1550fdc4c50556e 100644 --- a/crates/terminal_view/src/terminal_panel.rs +++ b/crates/terminal_view/src/terminal_panel.rs @@ -167,7 +167,7 @@ impl TerminalPanel { // hence we focus that first. Otherwise, we'd end up without a focused element, as // context menu will be gone the moment we spawn the modal. .action( - "Spawn task", + "Spawn Task", zed_actions::Spawn::modal().boxed_clone(), ) });