| 760 | } |
| 761 | |
| 762 | void SequenceWidget::UpdateWidgetStatus(bool showExtendText) |
| 763 | { |
| 764 | if (showExtendText) { |
| 765 | extendText->setText( |
| 766 | makeExtendText(switchData->extendedSequence.get())); |
| 767 | } |
| 768 | |
| 769 | delay->SetDuration(switchData->delay); |
| 770 | startScenes->setCurrentText( |
| 771 | GetWeakSourceName(switchData->startScene).c_str()); |
| 772 | interruptible->setChecked(switchData->interruptible); |
| 773 | |
| 774 | SwitchWidget::showSwitchData(); |
| 775 | } |
| 776 | |
| 777 | void SequenceWidget::ExtendClicked() |
| 778 | { |
no test coverage detected