ui: Put back left-border in tab bar end actions (#49402)

Fixing a minor UI issue that regressed in
https://github.com/zed-industries/zed/pull/49038.

Release Notes:

- N/A
This commit is contained in:
Danilo Leal 2026-02-17 18:36:47 -03:00 committed by GitHub
parent d0f5edeef2
commit d900b2b656
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View file

@ -145,6 +145,7 @@ impl RenderOnce for TabBar {
.px(DynamicSpacing::Base06.rems(cx))
.border_color(cx.theme().colors().border)
.border_b_1()
.border_l_1()
.children(self.end_children),
)
})

View file

@ -7927,8 +7927,8 @@ mod tests {
let scroll_bounds = tab_bar_scroll_handle.bounds();
let scroll_offset = tab_bar_scroll_handle.offset();
assert!(tab_bounds.right() <= scroll_bounds.right());
// -38.5 is the magic number for this setup
assert_eq!(scroll_offset.x, px(-38.5));
// -39.5 is the magic number for this setup
assert_eq!(scroll_offset.x, px(-39.5));
assert!(
!tab_bounds.intersects(&new_tab_button_bounds),
"Tab should not overlap with the new tab button, if this is failing check if there's been a redesign!"