Skip to content

Commit cb28e23

Browse files
committed
fix: OSC control of client Pause/Resume does not function CasparCG#304
1 parent c79c5ff commit cb28e23

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/Widgets/Rundown/RundownTreeWidget.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -1658,6 +1658,11 @@ void RundownTreeWidget::configureOscSubscriptions()
16581658
QObject::connect(this->loadControlSubscription, SIGNAL(subscriptionReceived(const QString&, const QList<QVariant>&)),
16591659
this, SLOT(loadControlSubscriptionReceived(const QString&, const QList<QVariant>&)));
16601660

1661+
QString pauseControlFilter = Osc::RUNDOWN_CONTROL_PAUSE_FILTER;
1662+
this->pauseControlSubscription = new OscSubscription(pauseControlFilter, this);
1663+
QObject::connect(this->pauseControlSubscription, SIGNAL(subscriptionReceived(const QString &, const QList<QVariant> &)),
1664+
this, SLOT(pauseControlSubscriptionReceived(const QString &, const QList<QVariant> &)));
1665+
16611666
QString nextControlFilter = Osc::RUNDOWN_CONTROL_NEXT_FILTER;
16621667
this->nextControlSubscription = new OscSubscription(nextControlFilter, this);
16631668
QObject::connect(this->nextControlSubscription, SIGNAL(subscriptionReceived(const QString&, const QList<QVariant>&)),

0 commit comments

Comments
 (0)