1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:57:43 +00:00

LibGUI+FontEditor: Move seek-prev/next-glyph logic into GlyphMapWidget

This commit is contained in:
Sam Atkins 2022-01-11 20:50:59 +00:00 committed by Andreas Kling
parent 9ca8428238
commit e975db23c0
3 changed files with 43 additions and 30 deletions

View file

@ -56,6 +56,9 @@ public:
void scroll_to_glyph(int);
void update_glyph(int);
void select_previous_existing_glyph();
void select_next_existing_glyph();
int rows() const { return m_rows; }
int columns() const { return m_columns; }