mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-22 16:08:39 -05:00
Changed warning message when adding more than one channel source in transmission mode
This commit is contained in:
parent
018c8ade40
commit
95bb0ba6c3
@ -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. You may experience performance problems").arg(nbSources));
|
||||
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));
|
||||
}
|
||||
|
||||
m_pluginManager->createTxChannelInstance(deviceUI->m_samplingDeviceControl->getChannelSelector()->currentIndex(), deviceUI, deviceUI->m_deviceSinkAPI);
|
||||
|
Loading…
Reference in New Issue
Block a user