mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 14:25:08 +00:00
LibGUI: Don't start AbstractView type-ahead search with tab key
This was preventing views from relinquishing focus via the keyboard. Fixes #3862.
This commit is contained in:
parent
80e12999c4
commit
1f789a07b1
1 changed files with 1 additions and 1 deletions
|
@ -563,7 +563,7 @@ void AbstractView::keydown_event(KeyEvent& event)
|
|||
event.accept();
|
||||
return;
|
||||
}
|
||||
} else if (!event.ctrl() && !event.alt() && event.code_point() != 0) {
|
||||
} else if (event.key() != KeyCode::Key_Tab && !event.ctrl() && !event.alt() && event.code_point() != 0) {
|
||||
StringBuilder sb;
|
||||
sb.append(m_searching);
|
||||
sb.append_code_point(event.code_point());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue