inline blame: Match icon size to font size in buffer (#11788)

This fixes #11311.


Release Notes:

- Fixed icon in inline git blame entry not changing with the buffer font
size. ([#11311](https://github.com/zed-industries/zed/issues/11311)).

Before:

![screenshot-2024-05-14-10 48
49@2x](https://github.com/zed-industries/zed/assets/1185253/4a288cae-a52b-4bee-8681-f1d9ba3b57f3)

After:

![screenshot-2024-05-14-10 50
06@2x](https://github.com/zed-industries/zed/assets/1185253/f7a6a608-8ecc-4642-adbd-80858dea75e9)
This commit is contained in:
Thorsten Ball 2024-05-14 11:06:16 +02:00 committed by GitHub
parent 9b74acc4f5
commit ec65035659
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 13 additions and 1 deletions

View File

@ -3388,7 +3388,11 @@ fn render_inline_blame_entry(
.font_family(style.text.font().family)
.text_color(cx.theme().status().hint)
.line_height(style.text.line_height)
.child(Icon::new(IconName::FileGit).color(Color::Hint))
.child(
Icon::new(IconName::FileGit)
.color(Color::Hint)
.font_size(style.text.font_size),
)
.child(text)
.gap_2()
.hoverable_tooltip(move |_| tooltip.clone().into())

View File

@ -344,6 +344,14 @@ impl Icon {
self
}
pub fn font_size(self, font_size: AbsoluteLength) -> Self {
let rems = match font_size {
AbsoluteLength::Pixels(pixels) => rems_from_px(pixels.into()),
AbsoluteLength::Rems(rems) => rems,
};
self.custom_size(rems)
}
pub fn transform(mut self, transformation: Transformation) -> Self {
self.transformation = transformation;
self