WindowServer: Use WindowManager::window_title_font() in one place

If we use this everywhere, it may one day become possible to change the
window title font.
This commit is contained in:
Andreas Kling 2020-07-25 13:45:52 +02:00
parent 0aef87b82c
commit 0d3d22f464

View file

@ -238,7 +238,7 @@ void WindowFrame::paint_normal_frame(Gfx::Painter& painter)
auto titlebar_icon_rect = title_bar_icon_rect();
auto titlebar_inner_rect = title_bar_text_rect();
auto titlebar_title_rect = titlebar_inner_rect;
titlebar_title_rect.set_width(Gfx::Font::default_bold_font().width(title_text));
titlebar_title_rect.set_width(WindowManager::the().window_title_font().width(title_text));
auto [title_color, border_color, border_color2] = compute_frame_colors();