mirror of
https://github.com/RGBCube/serenity
synced 2025-05-30 18:28:10 +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())
|
if (!model())
|
||||||
return;
|
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());
|
begin_editing(cursor_index());
|
||||||
else
|
event.accept();
|
||||||
activate(cursor_index());
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (event.key() == KeyCode::Key_Return) {
|
||||||
|
activate(cursor_index());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue