Skip to content

Commit

Permalink
Merge pull request #928 from siegmund42/choose-input
Browse files Browse the repository at this point in the history
Fixed choose external input does not consider page number
  • Loading branch information
mcallegari committed Jan 28, 2017
2 parents 172c9f5 + 2e7811a commit 71b7213
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/inputselectionwidget.cpp
Expand Up @@ -175,9 +175,9 @@ void InputSelectionWidget::slotChooseInputClicked()
SelectInputChannel sic(this, m_doc->inputOutputMap());
if (sic.exec() == QDialog::Accepted)
{
m_inputSource = QSharedPointer<QLCInputSource>(new QLCInputSource(sic.universe(), sic.channel()));
m_inputSource = QSharedPointer<QLCInputSource>(new QLCInputSource(sic.universe(), (m_widgetPage << 16) | sic.channel()));
updateInputSource();
emit inputValueChanged(sic.universe(), sic.channel());
emit inputValueChanged(sic.universe(), (m_widgetPage << 16) | sic.channel());
}
}

Expand Down

0 comments on commit 71b7213

Please sign in to comment.