mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 17:44:58 +00:00
LibGUI: Let's make F2 the standard "edit key"
This matches what other systems do, and allows Return to become the unambiguous "activation key" instead. :^)
This commit is contained in:
parent
12dfeb9845
commit
1847219cbf
1 changed files with 10 additions and 4 deletions
|
@ -165,11 +165,17 @@ void TableView::keydown_event(KeyEvent& event)
|
|||
{
|
||||
if (!model())
|
||||
return;
|
||||
if (event.key() == KeyCode::Key_Return) {
|
||||
if (is_editable() && edit_triggers() & EditTrigger::EditKeyPressed)
|
||||
|
||||
if (event.key() == KeyCode::Key_F2) {
|
||||
if (is_editable() && edit_triggers() & EditTrigger::EditKeyPressed) {
|
||||
begin_editing(cursor_index());
|
||||
else
|
||||
activate(cursor_index());
|
||||
event.accept();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (event.key() == KeyCode::Key_Return) {
|
||||
activate(cursor_index());
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue