| 295 | } |
| 296 | |
| 297 | void BackgroundWidget::secondColorChanged(const QColor& c) { |
| 298 | CONDITIONAL_LOCK_RETURN; |
| 299 | |
| 300 | for (auto* background : m_backgrounds) |
| 301 | background->setSecondColor(c); |
| 302 | } |
| 303 | |
| 304 | void BackgroundWidget::opacityChanged(int value) { |
| 305 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected