Skip to content

Commit

Permalink
Fixed choose external input does not consider page number
Browse files Browse the repository at this point in the history
  • Loading branch information
siegmund42 committed Jan 21, 2017
1 parent f61bbd8 commit 2e7811a
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 2e7811a

Please sign in to comment.