| 1526 | } |
| 1527 | |
| 1528 | void AxisDock::labelsOpacityChanged(int value) { |
| 1529 | CONDITIONAL_LOCK_RETURN; |
| 1530 | |
| 1531 | qreal opacity{value / 100.}; |
| 1532 | for (auto* axis : m_axesList) |
| 1533 | axis->setLabelsOpacity(opacity); |
| 1534 | } |
| 1535 | |
| 1536 | //************************************************************* |
| 1537 | //************ SLOTs for changes triggered in Axis ************ |
nothing calls this directly
no test coverage detected