FontEditor: Add text box for editing the font name.

This commit is contained in:
Andreas Kling 2019-02-03 03:06:58 +01:00
commit 663aad4036
Notes: sideshowbarker 2024-07-19 15:53:26 +09:00
5 changed files with 21 additions and 1 deletions

View file

@ -26,6 +26,9 @@ public:
byte glyph_width() const { return m_glyph_width; }
byte glyph_height() const { return m_glyph_height; }
String name() const { return m_name; }
void set_name(const String& name) { m_name = name; }
static void initialize();
private: