mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-16 14:02:00 +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
Notes:
sideshowbarker
2024-07-19 01:40:49 +09:00
Author: https://github.com/awesomekling
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