Fix missing registration of grid view items in the view

This commit is contained in:
Julian Eisel 2022-07-20 16:44:15 +02:00
parent 712960cefd
commit 0c6ae51d9f
1 changed files with 1 additions and 0 deletions

View File

@ -32,6 +32,7 @@ AbstractGridViewItem &AbstractGridView::add_item(std::unique_ptr<AbstractGridVie
added_item.view_ = this;
item_map_.add(added_item.identifier_, &added_item);
register_item(added_item);
return added_item;
}