| 347 | } |
| 348 | |
| 349 | void TabGame::AddItems(const std::vector<TcDBGamePtr>& games) { |
| 350 | context_->PostUITask([=, this]() { |
| 351 | for (const auto& game : games) { |
| 352 | AddItem(game); |
| 353 | } |
| 354 | }); |
| 355 | } |
| 356 | |
| 357 | void TabGame::LoadCover(const tc::TcDBGamePtr& game) { |
| 358 | auto steam_manager = context_->GetSteamManager(); |
nothing calls this directly
no test coverage detected