Narrow `.occlude()` call (#49981) (cherry-pick to preview) (#49983)

zed-zippy[bot] and John Tur created

Cherry-pick of #49981 to preview

----
Release Notes:

- N/A

Co-authored-by: John Tur <john-tur@outlook.com>

Change summary

crates/title_bar/src/collab.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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}"))