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

LibWeb: Delete entire grapheme clusters on backspace/delete key presses

This commit is contained in:
Timothy Flynn 2023-03-01 07:30:02 -05:00 committed by Linus Groh
parent 4734214ac1
commit fb6ca386cc
2 changed files with 9 additions and 8 deletions

View file

@ -20,7 +20,7 @@ public:
virtual ~EditEventHandler() = default;
virtual void handle_delete_character_after(const DOM::Position&);
virtual void handle_delete_character_after(DOM::Position const&);
virtual void handle_delete(DOM::Range&);
virtual void handle_insert(DOM::Position, u32 code_point);