format
| 152 | |
| 153 | // format |
| 154 | void MatrixDock::numericFormatChanged(int index) { |
| 155 | CONDITIONAL_LOCK_RETURN; |
| 156 | |
| 157 | char format = ui.cbFormat->itemData(index).toChar().toLatin1(); |
| 158 | for (auto* matrix : m_matrixList) |
| 159 | matrix->setNumericFormat(format); |
| 160 | } |
| 161 | |
| 162 | void MatrixDock::precisionChanged(int precision) { |
| 163 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected