| 160 | } |
| 161 | |
| 162 | void MatrixDock::precisionChanged(int precision) { |
| 163 | CONDITIONAL_LOCK_RETURN; |
| 164 | |
| 165 | for (auto* matrix : m_matrixList) |
| 166 | matrix->setPrecision(precision); |
| 167 | } |
| 168 | |
| 169 | void MatrixDock::headerFormatChanged(int value) { |
| 170 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected