| 1519 | } |
| 1520 | |
| 1521 | void AxisDock::labelsBackgroundColorChanged(const QColor& color) { |
| 1522 | CONDITIONAL_LOCK_RETURN; |
| 1523 | |
| 1524 | for (auto* axis : m_axesList) |
| 1525 | axis->setLabelsBackgroundColor(color); |
| 1526 | } |
| 1527 | |
| 1528 | void AxisDock::labelsOpacityChanged(int value) { |
| 1529 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected