| 209 | } |
| 210 | |
| 211 | bool ExternalResourcesPage::onSelectionChanged(const QModelIndex& current, const QModelIndex& previous) |
| 212 | { |
| 213 | auto sourceCurrent = m_filterModel->mapToSource(current); |
| 214 | int row = sourceCurrent.row(); |
| 215 | Resource const& resource = m_model->at(row); |
| 216 | ui->frame->updateWithResource(resource); |
| 217 | |
| 218 | return true; |
| 219 | } |
| 220 |
nothing calls this directly
no test coverage detected