1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:07:36 +00:00

CharacterMap: Make the search happen as you type

This commit is contained in:
Sam Atkins 2023-03-05 15:00:54 +00:00 committed by Andreas Kling
parent 1f0f96e6d7
commit a1baa5cb00
3 changed files with 5 additions and 19 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2022, Sam Atkins <atkinssj@serenityos.org>
* Copyright (c) 2022-2023, Sam Atkins <atkinssj@serenityos.org>
* Copyright (c) 2022, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
@ -26,6 +26,5 @@ private:
void search();
RefPtr<GUI::TextBox> m_search_input;
RefPtr<GUI::Button> m_search_button;
RefPtr<GUI::TableView> m_results_table;
};