From 657ff1cd195b9eaa843b7f06ae254acac21e90cf Mon Sep 17 00:00:00 2001 From: thankyouverycool <66646555+thankyouverycool@users.noreply.github.com> Date: Thu, 17 Nov 2022 10:42:11 -0500 Subject: [PATCH] LibGUI: Set focus proxy for CommandPalette's TableView --- Userland/Libraries/LibGUI/CommandPalette.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibGUI/CommandPalette.cpp b/Userland/Libraries/LibGUI/CommandPalette.cpp index 85d16dbf1f..cc8a175eb4 100644 --- a/Userland/Libraries/LibGUI/CommandPalette.cpp +++ b/Userland/Libraries/LibGUI/CommandPalette.cpp @@ -199,6 +199,7 @@ CommandPalette::CommandPalette(GUI::Window& parent_window, ScreenPosition screen m_table_view->set_column_painting_delegate(0, make()); m_table_view->set_model(*m_filter_model); + m_table_view->set_focus_proxy(m_text_box); m_text_box->on_change = [this] { m_filter_model->set_filter_term(m_text_box->text());