diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-04 11:41:01 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-04 11:41:01 +0100 |
commit | 6f787f687708323e23bddc08bd892ad05892fafa (patch) | |
tree | 434448c234615472762e2a820e394b4c64352f15 | |
parent | cacba45f1c615257c2c6a9f041e851e0ac030c13 (diff) | |
download | serenity-6f787f687708323e23bddc08bd892ad05892fafa.zip |
LibGUI: Use LizaBold as the default button font.
-rw-r--r-- | LibGUI/GButton.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/LibGUI/GButton.cpp b/LibGUI/GButton.cpp index 006c6a79c2..c6347bb5f0 100644 --- a/LibGUI/GButton.cpp +++ b/LibGUI/GButton.cpp @@ -7,6 +7,7 @@ GButton::GButton(GWidget* parent) : GWidget(parent) { set_fill_with_background_color(false); + set_font(Font::default_bold_font()); } GButton::~GButton() |