| 452 | } |
| 453 | |
| 454 | void WorksheetDock::layoutLeftMarginChanged(double margin) { |
| 455 | CONDITIONAL_RETURN_NO_LOCK; |
| 456 | |
| 457 | for (auto* worksheet : m_worksheetList) |
| 458 | worksheet->setLayoutLeftMargin(Worksheet::convertToSceneUnits(margin, m_worksheetUnit)); |
| 459 | } |
| 460 | |
| 461 | void WorksheetDock::layoutRightMarginChanged(double margin) { |
| 462 | CONDITIONAL_RETURN_NO_LOCK; |
nothing calls this directly
no test coverage detected