1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:37:45 +00:00

FontEditor: Add an option to show or hide modification highlights

This commit is contained in:
Sam Atkins 2022-08-02 14:30:58 +01:00 committed by Sam Atkins
parent 7f6bf8c7c1
commit 5b7168b247
2 changed files with 19 additions and 0 deletions

View file

@ -51,6 +51,8 @@ public:
bool is_showing_unicode_blocks() { return m_unicode_blocks; }
void set_show_unicode_blocks(bool);
void set_highlight_modifications(bool);
private:
MainWidget();
@ -110,6 +112,7 @@ private:
RefPtr<GUI::Action> m_open_preview_action;
RefPtr<GUI::Action> m_show_metadata_action;
RefPtr<GUI::Action> m_show_unicode_blocks_action;
RefPtr<GUI::Action> m_highlight_modifications_action;
GUI::ActionGroup m_glyph_editor_scale_actions;
RefPtr<GUI::Action> m_scale_five_action;