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

FontEditor: Add action text to Undo and Redo

This commit is contained in:
thankyouverycool 2023-05-16 08:39:02 -04:00 committed by Andreas Kling
parent e6935cbaaf
commit c10b1e3aea
5 changed files with 63 additions and 28 deletions

View file

@ -59,6 +59,7 @@ private:
void restore_state();
void did_modify_font();
void update_action_text();
void update_statusbar();
void update_preview();
void update_title();
@ -72,8 +73,8 @@ private:
void paste_glyphs();
void delete_selected_glyphs();
void push_undo();
void reset_selection_and_push_undo();
void push_undo(StringView action_text);
void reset_selection();
RefPtr<GUI::GlyphMapWidget> m_glyph_map_widget;
RefPtr<GlyphEditorWidget> m_glyph_editor_widget;