summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/EditingEngine.h
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2021-10-12 20:40:38 +0200
committerAndreas Kling <kling@serenityos.org>2021-10-15 10:38:57 +0200
commit3647001c931240d57066ac4837e52011b8f35a1b (patch)
tree3ee6e009e867d4b27caae174c2ba6dbc4d1b5471 /Userland/Libraries/LibGUI/EditingEngine.h
parent68884eefc625abc433969b825160b76a26d2390f (diff)
downloadserenity-3647001c931240d57066ac4837e52011b8f35a1b.zip
LibGUI: Don't update selection twice after Ctrl-Right
Diffstat (limited to 'Userland/Libraries/LibGUI/EditingEngine.h')
-rw-r--r--Userland/Libraries/LibGUI/EditingEngine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/EditingEngine.h b/Userland/Libraries/LibGUI/EditingEngine.h
index f3cc449224..0885ae8805 100644
--- a/Userland/Libraries/LibGUI/EditingEngine.h
+++ b/Userland/Libraries/LibGUI/EditingEngine.h
@@ -47,7 +47,7 @@ protected:
void move_one_up(const KeyEvent& event);
void move_one_down(const KeyEvent& event);
void move_to_previous_span();
- void move_to_next_span(const KeyEvent& event);
+ void move_to_next_span();
void move_to_logical_line_beginning();
void move_to_logical_line_end();
void move_to_line_beginning();