1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:17:35 +00:00

Base: Add Csilla Bold 7x10 variant.

It's nice to have a thin and a bold variant to complement each other.
This commit is contained in:
Andreas Kling 2019-03-01 02:50:50 +01:00
parent 0776c51bf5
commit b5e5f26a82
4 changed files with 11 additions and 1 deletions

View file

@ -33,7 +33,7 @@ Font& Font::default_font()
Font& Font::default_bold_font()
{
static const char* default_bold_font_path = "/res/fonts/LizaBold8x10.font";
static const char* default_bold_font_path = "/res/fonts/CsillaBold7x10.font";
if (!s_default_bold_font) {
s_default_bold_font = Font::load_from_file(default_bold_font_path).leak_ref();
ASSERT(s_default_bold_font);