| 524 | } |
| 525 | |
| 526 | void RundownCustomCommandWidget::checkDeviceConnection() |
| 527 | { |
| 528 | const QSharedPointer<CasparDevice> device = DeviceManager::getInstance().getDeviceByName(this->model.getDeviceName()); |
| 529 | if (device == NULL) |
| 530 | this->labelDisconnected->setVisible(true); |
| 531 | else |
| 532 | this->labelDisconnected->setVisible(!device->isConnected()); |
| 533 | } |
| 534 | |
| 535 | void RundownCustomCommandWidget::configureOscSubscriptions() |
| 536 | { |
nothing calls this directly
no test coverage detected