From b34037876e4a65e64c9d84b5b9a02d832a5c50da Mon Sep 17 00:00:00 2001 From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Date: Tue, 18 Feb 2025 11:14:10 -0300 Subject: [PATCH] terminal: Change context menu item label (#25085) Super subtle, but when I initially saw just "Close", I got weirded out asking myself "why there's a menu item to close the context menu?", to only then realize that it didn't close the menu, but the terminal _tab_. Might be obvious, because that's how buffer tabs are labled, but I don't know, it feels like the redundancy here is overall positive. Release Notes: - N/A --- crates/terminal_view/src/terminal_view.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/terminal_view/src/terminal_view.rs b/crates/terminal_view/src/terminal_view.rs index ff2e89f4ad..7903bb868b 100644 --- a/crates/terminal_view/src/terminal_view.rs +++ b/crates/terminal_view/src/terminal_view.rs @@ -258,7 +258,7 @@ impl TerminalView { }) .separator() .action( - "Close", + "Close Terminal Tab", Box::new(CloseActiveItem { save_intent: None, close_pinned: true,