| 341 | } |
| 342 | |
| 343 | QSize TabGame::GetItemSize() { |
| 344 | int item_width = 180; |
| 345 | int item_height = item_width / (600.0/900.0); |
| 346 | return {item_width, item_height}; |
| 347 | } |
| 348 | |
| 349 | void TabGame::AddItems(const std::vector<TcDBGamePtr>& games) { |
| 350 | context_->PostUITask([=, this]() { |
nothing calls this directly
no outgoing calls
no test coverage detected