mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 08:36:15 +00:00
TextEditor: Clear the selection before deleting it
This patches fixes a crash of the Userland/TextEditor where it would crash when deleting a range spanning two lines. This was because the TextEditor would delete the range and modify the cursor position before clearing the selection. This would trigger a status bar update with the invalid selection.
This commit is contained in:
@@ -1220,8 +1220,9 @@ String TextEditor::selected_text() const
|
||||
void TextEditor::delete_selection()
|
||||
{
|
||||
auto selection = normalized_selection();
|
||||
execute<RemoveTextCommand>(selected_text(), selection);
|
||||
auto selected = selected_text();
|
||||
m_selection.clear();
|
||||
execute<RemoveTextCommand>(selected, selection);
|
||||
did_update_selection();
|
||||
did_change();
|
||||
set_cursor(selection.start());
|
||||
|
||||
Reference in New Issue
Block a user