Reverted change of warning message when adding more than one channel source in transmission mode

pull/127/head
f4exb 2018-01-02 17:56:16 +01:00
rodzic 36b3137a48
commit 66aa8363cc
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -1208,7 +1208,7 @@ void MainWindow::on_channel_addClicked(bool checked __attribute__((unused)))
uint32_t nbSources = deviceUI->m_deviceSinkAPI->getNumberOfSources();
if (nbSources > 0) {
QMessageBox::information(this, tr("Message"), tr("%1 channel(s) already in use. Multiple transmission channels is experimental. Some plugin types are not compatible with each other.").arg(nbSources));
QMessageBox::information(this, tr("Message"), tr("%1 channel(s) already in use. Multiple transmission channels is experimental. You may experience performance problems").arg(nbSources));
}
m_pluginManager->createTxChannelInstance(deviceUI->m_samplingDeviceControl->getChannelSelector()->currentIndex(), deviceUI, deviceUI->m_deviceSinkAPI);