diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-01 01:51:16 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-01 01:52:20 +0100 |
commit | 0776c51bf522e41d833ea8e0f12914d70beaa4d6 (patch) | |
tree | 97388be54f381d83ee1f8cc880ed63ff044e6c99 /SharedGraphics/Font.cpp | |
parent | e6625755c97d47ee6f06016b40368ffa54bdfcbf (diff) | |
download | serenity-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.cpp | 2 |
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); |