| 520 | } |
| 521 | |
| 522 | void CartesianPlotLegendDock::layoutLeftMarginChanged(double margin) { |
| 523 | CONDITIONAL_RETURN_NO_LOCK; |
| 524 | |
| 525 | for (auto* legend : m_legendList) |
| 526 | legend->setLayoutLeftMargin(Worksheet::convertToSceneUnits(margin, m_worksheetUnit)); |
| 527 | } |
| 528 | |
| 529 | void CartesianPlotLegendDock::layoutRightMarginChanged(double margin) { |
| 530 | CONDITIONAL_RETURN_NO_LOCK; |
nothing calls this directly
no test coverage detected