diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-01 02:50:50 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-01 02:50:50 +0100 |
commit | b5e5f26a8223637d17ec4b4198be163ccdcc8dad (patch) | |
tree | bdb1fa5884b582289cf8bf4bf0dc0756623a39cc /SharedGraphics | |
parent | 0776c51bf522e41d833ea8e0f12914d70beaa4d6 (diff) | |
download | serenity-b5e5f26a8223637d17ec4b4198be163ccdcc8dad.zip |
Base: Add Csilla Bold 7x10 variant.
It's nice to have a thin and a bold variant to complement each other.
Diffstat (limited to 'SharedGraphics')
-rw-r--r-- | SharedGraphics/Font.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SharedGraphics/Font.cpp b/SharedGraphics/Font.cpp index 059506a470..f33c8d6747 100644 --- a/SharedGraphics/Font.cpp +++ b/SharedGraphics/Font.cpp @@ -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); |