mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 04:57:45 +00:00
LibGfx: Remove Gfx::FontDatabase::default_bold_font()
Instead use default_font().bold_variant() in cases where we want a bold variant of the default font. :^)
This commit is contained in:
parent
068ddf4513
commit
6a012ad79f
24 changed files with 33 additions and 46 deletions
|
@ -88,7 +88,7 @@ Card::Card(Type type, uint8_t value)
|
|||
}
|
||||
|
||||
Gfx::Painter painter(m_front);
|
||||
auto& font = Gfx::FontDatabase::default_bold_font();
|
||||
auto& font = Gfx::FontDatabase::default_font().bold_variant();
|
||||
|
||||
auto label = labels[value];
|
||||
m_front->fill(Color::White);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue