| 445 | } |
| 446 | |
| 447 | void WorksheetDock::layoutBottomMarginChanged(double margin) { |
| 448 | CONDITIONAL_RETURN_NO_LOCK; |
| 449 | |
| 450 | for (auto* worksheet : m_worksheetList) |
| 451 | worksheet->setLayoutBottomMargin(Worksheet::convertToSceneUnits(margin, m_worksheetUnit)); |
| 452 | } |
| 453 | |
| 454 | void WorksheetDock::layoutLeftMarginChanged(double margin) { |
| 455 | CONDITIONAL_RETURN_NO_LOCK; |
nothing calls this directly
no test coverage detected