mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:17:45 +00:00
LibGUI: Make Ctrl-Shift-Home/-End work again
Previously, the initial call to update_selection() was missing, so if no text was already selected, then Ctrl-Shift-End would only move the cursor to the document end, but not select any text.
This commit is contained in:
parent
2f023acf78
commit
68884eefc6
1 changed files with 10 additions and 18 deletions
|
@ -120,37 +120,29 @@ bool EditingEngine::on_key(const KeyEvent& event)
|
|||
}
|
||||
|
||||
if (event.key() == KeyCode::Key_Home) {
|
||||
m_editor->update_selection(event.shift());
|
||||
if (event.ctrl()) {
|
||||
move_to_first_line();
|
||||
if (event.shift() && m_editor->selection().start().is_valid()) {
|
||||
m_editor->selection().set_end(m_editor->cursor());
|
||||
m_editor->did_update_selection();
|
||||
}
|
||||
} else {
|
||||
m_editor->update_selection(event.shift());
|
||||
move_to_line_beginning();
|
||||
if (event.shift() && m_editor->selection().start().is_valid()) {
|
||||
m_editor->selection().set_end(m_editor->cursor());
|
||||
m_editor->did_update_selection();
|
||||
}
|
||||
}
|
||||
if (event.shift() && m_editor->selection().start().is_valid()) {
|
||||
m_editor->selection().set_end(m_editor->cursor());
|
||||
m_editor->did_update_selection();
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
if (event.key() == KeyCode::Key_End) {
|
||||
m_editor->update_selection(event.shift());
|
||||
if (event.ctrl()) {
|
||||
move_to_last_line();
|
||||
if (event.shift() && m_editor->selection().start().is_valid()) {
|
||||
m_editor->selection().set_end(m_editor->cursor());
|
||||
m_editor->did_update_selection();
|
||||
}
|
||||
} else {
|
||||
m_editor->update_selection(event.shift());
|
||||
move_to_line_end();
|
||||
if (event.shift() && m_editor->selection().start().is_valid()) {
|
||||
m_editor->selection().set_end(m_editor->cursor());
|
||||
m_editor->did_update_selection();
|
||||
}
|
||||
}
|
||||
if (event.shift() && m_editor->selection().start().is_valid()) {
|
||||
m_editor->selection().set_end(m_editor->cursor());
|
||||
m_editor->did_update_selection();
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue