1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-26 20:14:19 -04:00

Massive UI revamping (v7): updated basic channel settings and indicate stream index for MIMO device and single stream channel

This commit is contained in:
f4exb
2022-04-18 01:42:03 +02:00
parent 50a12b3a3f
commit 018b97e17d
105 changed files with 934 additions and 1044 deletions
+5 -1
View File
@@ -872,8 +872,12 @@ void MainWindow::sampleMIMOCreate(
deviceGUI->setToolTip(samplingDevice->displayedName);
deviceGUI->setTitle(samplingDevice->displayedName.split(" ")[0]);
deviceGUI->setCurrentDeviceIndex(selectedDeviceIndex);
QStringList channelNames;
QStringList channelNames, tmpChannelNames;
m_pluginManager->listMIMOChannels(channelNames);
m_pluginManager->listRxChannels(tmpChannelNames);
channelNames.append(tmpChannelNames);
m_pluginManager->listTxChannels(tmpChannelNames);
channelNames.append(tmpChannelNames);
deviceGUI->setChannelNames(channelNames);
MainSpectrumGUI *spectrumGUI = deviceUISet->m_mainSpectrumGUI;
spectrumGUI->setDeviceType(MainSpectrumGUI::DeviceMIMO);