mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 13:17:35 +00:00
LibGUI: Remove premature return in Window::handle_key_event
This commit is contained in:
parent
5f10c0628a
commit
b9fc7780ae
1 changed files with 0 additions and 1 deletions
|
@ -446,7 +446,6 @@ void Window::handle_key_event(KeyEvent& event)
|
|||
{
|
||||
if (!m_focused_widget && event.type() == Event::KeyDown && event.key() == Key_Tab && !event.ctrl() && !event.alt() && !event.super()) {
|
||||
focus_a_widget_if_possible(FocusSource::Keyboard);
|
||||
return;
|
||||
}
|
||||
|
||||
if (m_focused_widget)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue