| 452 | } |
| 453 | |
| 454 | void MacroSegmentEdit::HeaderInfoChanged(const QString &text) |
| 455 | { |
| 456 | if (Data() && Data()->GetUseCustomLabel()) { |
| 457 | _headerInfo->show(); |
| 458 | _headerInfo->setText( |
| 459 | QString::fromStdString(Data()->GetCustomLabel())); |
| 460 | return; |
| 461 | } |
| 462 | _headerInfo->setVisible(!text.isEmpty()); |
| 463 | _headerInfo->setText(text); |
| 464 | } |
| 465 | |
| 466 | void MacroSegmentEdit::Collapsed(bool collapsed) const |
| 467 | { |
no test coverage detected