| 280 | } |
| 281 | |
| 282 | void BackgroundWidget::brushStyleChanged(int index) { |
| 283 | CONDITIONAL_LOCK_RETURN; |
| 284 | |
| 285 | auto style = (Qt::BrushStyle)index; |
| 286 | for (auto* background : m_backgrounds) |
| 287 | background->setBrushStyle(style); |
| 288 | } |
| 289 | |
| 290 | void BackgroundWidget::firstColorChanged(const QColor& c) { |
| 291 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected