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
Notes: sideshowbarker 2024-07-19 15:52:25 +09:00

View file

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