| 1634 | } |
| 1635 | |
| 1636 | void CartesianPlotDock::borderCornerRadiusChanged(double value) { |
| 1637 | CONDITIONAL_RETURN_NO_LOCK; |
| 1638 | |
| 1639 | const double radius = Worksheet::convertToSceneUnits(value, m_worksheetUnit); |
| 1640 | for (auto* plot : m_plotList) |
| 1641 | plot->plotArea()->setBorderCornerRadius(radius); |
| 1642 | } |
| 1643 | |
| 1644 | void CartesianPlotDock::exportPlotTemplate() { |
| 1645 | KConfig config; |
nothing calls this directly
no test coverage detected