From ebe877887664097a4fa0499ead2d43caccf10479 Mon Sep 17 00:00:00 2001 From: Karol Kosek Date: Sat, 21 Aug 2021 22:12:43 +0200 Subject: [PATCH] LibGUI: Enable searching through ListView items by keyboard ComboBoxes and a FontPicker window will now react to keyboard press. --- Userland/Libraries/LibGUI/ListView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibGUI/ListView.cpp b/Userland/Libraries/LibGUI/ListView.cpp index e97e87fa8e..77e939fe47 100644 --- a/Userland/Libraries/LibGUI/ListView.cpp +++ b/Userland/Libraries/LibGUI/ListView.cpp @@ -19,6 +19,7 @@ ListView::ListView() set_fill_with_background_color(true); set_background_role(ColorRole::Base); set_foreground_role(ColorRole::BaseText); + set_searchable(true); } ListView::~ListView()