From 66aa8363cce7f6dc00e25656ac5b6c3f08561432 Mon Sep 17 00:00:00 2001 From: f4exb Date: Tue, 2 Jan 2018 17:56:16 +0100 Subject: [PATCH] Reverted change of warning message when adding more than one channel source in transmission mode --- sdrgui/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdrgui/mainwindow.cpp b/sdrgui/mainwindow.cpp index 2f9a0de38..1e8140e4c 100644 --- a/sdrgui/mainwindow.cpp +++ b/sdrgui/mainwindow.cpp @@ -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);