1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:58:12 +00:00

LibGUI: Use LizaBold as the default button font.

This commit is contained in:
Andreas Kling 2019-02-04 11:41:01 +01:00
parent cacba45f1c
commit 6f787f6877

View file

@ -7,6 +7,7 @@ GButton::GButton(GWidget* parent)
: GWidget(parent) : GWidget(parent)
{ {
set_fill_with_background_color(false); set_fill_with_background_color(false);
set_font(Font::default_bold_font());
} }
GButton::~GButton() GButton::~GButton()