"Tick labels"-tab
| 1315 | |
| 1316 | //"Tick labels"-tab |
| 1317 | void AxisDock::labelsFormatChanged(int index) { |
| 1318 | CONDITIONAL_LOCK_RETURN; |
| 1319 | |
| 1320 | for (auto* axis : m_axesList) |
| 1321 | axis->setLabelsFormat(Axis::indexToLabelsFormat(index)); |
| 1322 | } |
| 1323 | |
| 1324 | void AxisDock::labelsFormatAutoChanged(bool automatic) { |
| 1325 | // Must be above the lock, because if the axis changes the value without interacting with the |
nothing calls this directly
no test coverage detected