1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:37:35 +00:00

CharacterMap: Add previous, next, and go-to glyph buttons

These work the same as in FontEditor, where I shamelessly stole them
from. :^)
This commit is contained in:
Sam Atkins 2022-01-11 20:52:03 +00:00 committed by Andreas Kling
parent e975db23c0
commit 2bf7abcb28
2 changed files with 34 additions and 0 deletions

View file

@ -33,4 +33,7 @@ private:
RefPtr<GUI::Action> m_choose_font_action;
RefPtr<GUI::Action> m_copy_selection_action;
RefPtr<GUI::Action> m_previous_glyph_action;
RefPtr<GUI::Action> m_next_glyph_action;
RefPtr<GUI::Action> m_go_to_glyph_action;
};