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

LibGUI+FontEditor: Allow system emoji to be toggled in GlyphMapWidget

And remove their red backgrounds when visible to not be confused with
deletion highlights.
This commit is contained in:
thankyouverycool 2022-08-14 16:00:26 -04:00 committed by Andreas Kling
parent c974e644ec
commit d9fb838cf6
4 changed files with 32 additions and 5 deletions

View file

@ -55,6 +55,7 @@ public:
void set_show_statusbar(bool);
void set_highlight_modifications(bool);
void set_show_system_emoji(bool);
private:
MainWidget();
@ -118,6 +119,7 @@ private:
RefPtr<GUI::Action> m_show_toolbar_action;
RefPtr<GUI::Action> m_show_statusbar_action;
RefPtr<GUI::Action> m_highlight_modifications_action;
RefPtr<GUI::Action> m_show_system_emoji_action;
GUI::ActionGroup m_glyph_editor_scale_actions;
RefPtr<GUI::Action> m_scale_five_action;