1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:37:35 +00:00

Maps: Use name + coordinates in search marker tooltip

This commit is contained in:
Bastiaan van der Plaat 2023-09-27 22:03:54 +02:00 committed by Andrew Kaster
parent 54ec744398
commit f35791343e
4 changed files with 5 additions and 5 deletions

View file

@ -36,6 +36,7 @@ public:
private:
SearchPanel() = default;
static ErrorOr<NonnullRefPtr<SearchPanel>> try_create();
ErrorOr<void> setup();
@ -47,7 +48,6 @@ private:
RefPtr<GUI::Frame> m_start_container;
RefPtr<GUI::Frame> m_empty_container;
RefPtr<GUI::ListView> m_places_list;
RefPtr<GUI::ItemListModel<String>> m_places_names_model;
Vector<Place> m_places;
Vector<String> m_places_names;
};