Skip to content

Commit

Permalink
fix: OSC control of client Pause/Resume does not function #304
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed Dec 13, 2023
1 parent c79c5ff commit cb28e23
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Widgets/Rundown/RundownTreeWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1658,6 +1658,11 @@ void RundownTreeWidget::configureOscSubscriptions()
QObject::connect(this->loadControlSubscription, SIGNAL(subscriptionReceived(const QString&, const QList<QVariant>&)),
this, SLOT(loadControlSubscriptionReceived(const QString&, const QList<QVariant>&)));

QString pauseControlFilter = Osc::RUNDOWN_CONTROL_PAUSE_FILTER;
this->pauseControlSubscription = new OscSubscription(pauseControlFilter, this);
QObject::connect(this->pauseControlSubscription, SIGNAL(subscriptionReceived(const QString &, const QList<QVariant> &)),
this, SLOT(pauseControlSubscriptionReceived(const QString &, const QList<QVariant> &)));

QString nextControlFilter = Osc::RUNDOWN_CONTROL_NEXT_FILTER;
this->nextControlSubscription = new OscSubscription(nextControlFilter, this);
QObject::connect(this->nextControlSubscription, SIGNAL(subscriptionReceived(const QString&, const QList<QVariant>&)),
Expand Down

0 comments on commit cb28e23

Please sign in to comment.