| 427 | } |
| 428 | |
| 429 | void QmitkPipInstallDialog::OfferDetails() |
| 430 | { |
| 431 | // Only meaningful if pip actually produced output. If it didn't, hide the |
| 432 | // toggle so the dialog stays minimal. |
| 433 | if (m_Ui->detailsView->toPlainText().isEmpty()) |
| 434 | return; |
| 435 | |
| 436 | m_Ui->detailsButton->show(); |
| 437 | } |
| 438 | |
| 439 | void QmitkPipInstallDialog::SetDetailsVisible(bool show) |
| 440 | { |
no test coverage detected