1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 10:37:45 +00:00

LibGUI: Setup IncrementalSearchBanners for TextEditors

Multi-line TextEditors now share a common search widget which can
be opened with Ctrl+F
This commit is contained in:
thankyouverycool 2022-11-28 18:09:46 -05:00 committed by Sam Atkins
parent 8231bd9bc3
commit c476ca2bd6
2 changed files with 12 additions and 0 deletions

View file

@ -440,6 +440,7 @@ private:
Optional<size_t> m_search_result_index;
Vector<GUI::TextRange> m_search_results;
RefPtr<IncrementalSearchBanner> m_search_banner;
};
}