Fix UI font size changes not applying (#25307)

Related to #24857.

Release Notes:

- N/A
This commit is contained in:
João Marcos 2025-02-21 06:24:02 -03:00 committed by GitHub
parent 4871d3c9e7
commit 5e1dd91ee5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 35 additions and 25 deletions

View file

@ -141,7 +141,7 @@ impl CommitModal {
let settings = ThemeSettings::get_global(cx);
let line_height = relative(settings.buffer_line_height.value())
.to_pixels(settings.buffer_font_size.into(), window.rem_size());
.to_pixels(settings.buffer_font_size(cx).into(), window.rem_size());
v_flex()
.justify_between()