1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 11:57:34 +00:00

LizaBold8x10: Import a bold variant of Liza8x10 and make it the default bold.

Start using it right away for window titles.
This commit is contained in:
Andreas Kling 2019-02-04 11:37:15 +01:00
parent ac11c90dee
commit cacba45f1c
5 changed files with 37 additions and 2 deletions

View file

@ -39,6 +39,9 @@ public:
void invalidate();
void flush(const Rect&);
Font& font() { return *m_font; }
const Font& font() const { return *m_font; }
private:
WSWindowManager();
virtual ~WSWindowManager() override;
@ -98,6 +101,8 @@ private:
OwnPtr<Painter> m_back_painter;
OwnPtr<Painter> m_front_painter;
RetainPtr<Font> m_font;
mutable Lock m_lock;
bool m_flash_flush { false };