summaryrefslogtreecommitdiff
path: root/LibGUI/GButton.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-02-04 11:41:01 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-02-04 11:41:01 +0100
commit6f787f687708323e23bddc08bd892ad05892fafa (patch)
tree434448c234615472762e2a820e394b4c64352f15 /LibGUI/GButton.cpp
parentcacba45f1c615257c2c6a9f041e851e0ac030c13 (diff)
downloadserenity-6f787f687708323e23bddc08bd892ad05892fafa.zip
LibGUI: Use LizaBold as the default button font.
Diffstat (limited to 'LibGUI/GButton.cpp')
-rw-r--r--LibGUI/GButton.cpp1
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()