1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:47:34 +00:00

LibGUI: Add AutocompleteProvider::has_suggestions()

This commit is contained in:
thislooksfun 2021-10-28 00:46:45 -05:00 committed by Andreas Kling
parent 1bf428d296
commit 713b6badb0

View file

@ -86,6 +86,7 @@ public:
void show(Gfx::IntPoint suggestion_box_location);
void close();
bool has_suggestions() { return m_suggestion_view->model()->row_count() > 0; }
void next_suggestion();
void previous_suggestion();
void apply_suggestion();