From 7ac30f53a0c0b97c6173df5e5f0de622fb84556f Mon Sep 17 00:00:00 2001 From: thankyouverycool <66646555+thankyouverycool@users.noreply.github.com> Date: Wed, 21 Sep 2022 14:42:27 -0400 Subject: [PATCH] LibGUI: Block ComboBox windows from using CommandPalette --- Userland/Libraries/LibGUI/ComboBox.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibGUI/ComboBox.cpp b/Userland/Libraries/LibGUI/ComboBox.cpp index 0b7e1c574d..281ed7d676 100644 --- a/Userland/Libraries/LibGUI/ComboBox.cpp +++ b/Userland/Libraries/LibGUI/ComboBox.cpp @@ -110,6 +110,7 @@ ComboBox::ComboBox() m_list_window = add(window()); m_list_window->set_frameless(true); m_list_window->set_window_mode(WindowMode::CaptureInput); + m_list_window->set_blocks_command_palette(true); m_list_window->on_active_input_change = [this](bool is_active_input) { if (!is_active_input) { m_open_button->set_enabled(false);