| 272 | } |
| 273 | |
| 274 | void BackgroundWidget::imageStyleChanged(int index) { |
| 275 | CONDITIONAL_LOCK_RETURN; |
| 276 | |
| 277 | auto style = (Background::ImageStyle)index; |
| 278 | for (auto* background : m_backgrounds) |
| 279 | background->setImageStyle(style); |
| 280 | } |
| 281 | |
| 282 | void BackgroundWidget::brushStyleChanged(int index) { |
| 283 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected