| 513 | } |
| 514 | |
| 515 | void CartesianPlotLegendDock::layoutBottomMarginChanged(double margin) { |
| 516 | CONDITIONAL_RETURN_NO_LOCK; |
| 517 | |
| 518 | for (auto* legend : m_legendList) |
| 519 | legend->setLayoutBottomMargin(Worksheet::convertToSceneUnits(margin, m_worksheetUnit)); |
| 520 | } |
| 521 | |
| 522 | void CartesianPlotLegendDock::layoutLeftMarginChanged(double margin) { |
| 523 | CONDITIONAL_RETURN_NO_LOCK; |
nothing calls this directly
no test coverage detected