1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:17:45 +00:00

LibGUI: Enable searching through ListView items by keyboard

ComboBoxes and a FontPicker window will now react to keyboard press.
This commit is contained in:
Karol Kosek 2021-08-21 22:12:43 +02:00 committed by Andreas Kling
parent c2a89cac4e
commit ebe8778876

View file

@ -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()