| 86 | } |
| 87 | |
| 88 | void ExternalResourcesPage::itemActivated(const QModelIndex&) |
| 89 | { |
| 90 | if (!m_controlsEnabled) |
| 91 | return; |
| 92 | |
| 93 | auto selection = m_filterModel->mapSelectionToSource(ui->treeView->selectionModel()->selection()); |
| 94 | m_model->setResourceEnabled(selection.indexes(), EnableAction::TOGGLE); |
| 95 | } |
| 96 | |
| 97 | void ExternalResourcesPage::filterTextChanged(const QString& newContents) |
| 98 | { |
nothing calls this directly
no test coverage detected