| 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 |
| 1326 | // dock, this should also change |
| 1327 | ui.cbLabelsFormat->setEnabled(!automatic); |
| 1328 | |
| 1329 | CONDITIONAL_LOCK_RETURN; |
| 1330 | |
| 1331 | for (auto* axis : m_axesList) |
| 1332 | axis->setLabelsFormatAuto(automatic); |
| 1333 | } |
| 1334 | |
| 1335 | void AxisDock::labelsPrecisionChanged(int value) { |
| 1336 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected