1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-08 17:04:46 -04:00

Implemented multiple Feature Sets in GUI

This commit is contained in:
f4exb
2021-08-21 22:05:05 +02:00
parent e2286cc741
commit 96cf34591a
3 changed files with 46 additions and 0 deletions
+12
View File
@@ -2213,6 +2213,18 @@ void MainWindow::on_action_removeLastDevice_triggered()
}
}
void MainWindow::on_action_addFeatureSet_triggered()
{
addFeatureSet();
}
void MainWindow::on_action_removeLastFeatureSet_triggered()
{
if (m_featureUIs.size() > 1) {
removeFeatureSet(m_featureUIs.size() - 1);
}
}
void MainWindow::tabInputViewIndexChanged()
{
int inputViewIndex = ui->tabInputsView->currentIndex();