Fix tab text colors

This commit is contained in:
Conrad Irwin 2023-11-03 09:12:12 -06:00
parent b21c25826d
commit 0edcec7c4e
2 changed files with 12 additions and 3 deletions

View file

@ -584,12 +584,18 @@ impl Item for Editor {
.flex()
.flex_row()
.items_center()
.text_color(gpui::white())
.gap_2()
.child(self.title(cx).to_string())
.children(detail.and_then(|detail| {
let path = path_for_buffer(&self.buffer, detail, false, cx)?;
let description = path.to_string_lossy();
Some(util::truncate_and_trailoff(&description, MAX_TAB_TITLE_LEN))
Some(
div()
.text_color(theme.colors().text_muted)
.text_xs()
.child(util::truncate_and_trailoff(&description, MAX_TAB_TITLE_LEN)),
)
})),
)
}