mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 11:20:03 +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:
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user