summaryrefslogtreecommitdiff
path: root/SharedGraphics/Font.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-03-01 01:51:16 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-03-01 01:52:20 +0100
commit0776c51bf522e41d833ea8e0f12914d70beaa4d6 (patch)
tree97388be54f381d83ee1f8cc880ed63ff044e6c99 /SharedGraphics/Font.cpp
parente6625755c97d47ee6f06016b40368ffa54bdfcbf (diff)
downloadserenity-0776c51bf522e41d833ea8e0f12914d70beaa4d6.zip
Base: Import a new font, Csilla Thin (7x10).
I wanted to do a bitmap font with an odd number of columns for a while and I finally got around to it. This really looks rather nice, so I'm making it the default system font for now. :^)
Diffstat (limited to 'SharedGraphics/Font.cpp')
-rw-r--r--SharedGraphics/Font.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/SharedGraphics/Font.cpp b/SharedGraphics/Font.cpp
index 2b60ca05ae..059506a470 100644
--- a/SharedGraphics/Font.cpp
+++ b/SharedGraphics/Font.cpp
@@ -23,7 +23,7 @@ struct [[gnu::packed]] FontFileHeader {
Font& Font::default_font()
{
- static const char* default_font_path = "/res/fonts/LizaRegular8x10.font";
+ static const char* default_font_path = "/res/fonts/CsillaThin7x10.font";
if (!s_default_font) {
s_default_font = Font::load_from_file(default_font_path).leak_ref();
ASSERT(s_default_font);