1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:18:11 +00:00

GTextEditor: Shift+Delete should delete the current line.

This commit is contained in:
Andreas Kling 2019-03-25 13:13:46 +01:00
parent fceeb9b695
commit 838a06096a
2 changed files with 22 additions and 4 deletions

View file

@ -94,6 +94,7 @@ public:
void copy();
void paste();
void do_delete();
void delete_current_line();
Function<void(GTextEditor&)> on_return_pressed;
Function<void(GTextEditor&)> on_escape_pressed;