From 0967015ff0ac22cf33ecc2a4804f3450462f31c6 Mon Sep 17 00:00:00 2001 From: l0ng-ai <24760907+l0ng-ai@users.noreply.github.com> Date: Sat, 8 Aug 2026 20:16:43 +0700 Subject: [PATCH] fix(settings): give the add-host button the tooltip its neighbour has MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The + and the ⋯ sit side by side above the Hosts list at the same size and weight; only the ⋯ named itself on hover. It now says "New host", the same words the form it opens puts in its title. --- src/ui/settings.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ui/settings.rs b/src/ui/settings.rs index 978c5ec4..4db181fa 100644 --- a/src/ui/settings.rs +++ b/src/ui/settings.rs @@ -1835,6 +1835,7 @@ impl Tty7App { .icon(Icon::new(IconName::Plus)) .ghost() .small() + .tooltip(t(L10nKey::SettingsNewHost)) .on_click(cx.listener(|this, _, window, cx| { this.add_new_profile(window, cx) })),