| 533 | } |
| 534 | |
| 535 | void InfoElement::labelTextWrapperChanged(TextLabel::TextWrapper) { |
| 536 | if (m_setTextLabelText) |
| 537 | return; |
| 538 | |
| 539 | m_setTextLabelText = true; |
| 540 | m_title->setUndoAware(false); |
| 541 | m_title->setText(createTextLabelText()); |
| 542 | m_title->setUndoAware(true); |
| 543 | m_setTextLabelText = false; |
| 544 | |
| 545 | Q_D(InfoElement); |
| 546 | d->retransform(); |
| 547 | } |
| 548 | |
| 549 | void InfoElement::curveCoordinateSystemIndexChanged(int /*index*/) { |
| 550 | auto* curve = static_cast<XYCurve*>(QObject::sender()); |
nothing calls this directly
no test coverage detected