From e57a48678b71239c084753d3b3ee070942725245 Mon Sep 17 00:00:00 2001 From: John Tur Date: Tue, 24 Feb 2026 08:56:43 -0500 Subject: [PATCH] Narrow `.occlude()` call (#49981) Release Notes: - N/A --- crates/title_bar/src/collab.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/title_bar/src/collab.rs b/crates/title_bar/src/collab.rs index 58e4d2a8fcfdfe885b7ddf51b20e193625950ce0..0f4d5977947fa27cf3ca5811dbf883c4dbd9df94 100644 --- a/crates/title_bar/src/collab.rs +++ b/crates/title_bar/src/collab.rs @@ -143,7 +143,6 @@ impl TitleBar { h_flex() .id("collaborator-list") - .occlude() .w_full() .gap_1() .overflow_x_scroll() @@ -227,6 +226,7 @@ impl TitleBar { .ok(); }) }) + .occlude() .tooltip({ let login = collaborator.user.github_login.clone(); Tooltip::text(format!("Follow {login}"))