| 547 | } |
| 548 | |
| 549 | void InfoElement::curveCoordinateSystemIndexChanged(int /*index*/) { |
| 550 | auto* curve = static_cast<XYCurve*>(QObject::sender()); |
| 551 | auto cSystemIndex = curve->coordinateSystemIndex(); |
| 552 | |
| 553 | for (auto& custompoint : markerpoints) { |
| 554 | if (custompoint.curve == curve) { |
| 555 | custompoint.customPoint->setCoordinateSystemIndex(cSystemIndex); |
| 556 | break; |
| 557 | } |
| 558 | } |
| 559 | |
| 560 | retransform(); |
| 561 | } |
| 562 | |
| 563 | void InfoElement::curveVisibilityChanged() { |
| 564 | XYCurve* curve = static_cast<XYCurve*>(QObject::sender()); |
nothing calls this directly
no test coverage detected