| 80 | } |
| 81 | |
| 82 | void FirstLaunchWizard::showEvent(QShowEvent *ev) |
| 83 | { |
| 84 | QWidget::showEvent(ev); |
| 85 | auto maxSize = ui->p1_container->size() * 1.3; |
| 86 | ui->p1_container->setMaximumSize(maxSize); |
| 87 | ui->p3_container->setMaximumSize(maxSize); |
| 88 | ui->p4_container->setMaximumSize(maxSize); |
| 89 | } |
| 90 | |
| 91 | void FirstLaunchWizard::onSystrayRadioSelected() |
| 92 | { |
nothing calls this directly
no test coverage detected