1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-04 23:14:47 -04:00

AM Modulator: handle record file play loop

This commit is contained in:
f4exb
2016-11-28 18:19:23 +01:00
parent 3f3a58772b
commit cb2e99f540
3 changed files with 58 additions and 24 deletions
+4 -3
View File
@@ -74,7 +74,7 @@ void AMModGUI::resetToDefaults()
{
blockApplySettings(true);
ui->rfBW->setValue(4);
ui->rfBW->setValue(6);
ui->afBW->setValue(3);
ui->modPercent->setValue(20);
ui->deltaFrequency->setValue(0);
@@ -226,7 +226,7 @@ void AMModGUI::on_audioMute_toggled(bool checked)
void AMModGUI::on_playLoop_toggled(bool checked)
{
// TODO: do something about it!
applySettings();
}
void AMModGUI::on_play_toggled(bool checked)
@@ -391,7 +391,8 @@ void AMModGUI::applySettings()
m_rfBW[ui->rfBW->value()],
ui->afBW->value() * 1000.0,
ui->modPercent->value() / 100.0f,
ui->audioMute->isChecked());
ui->audioMute->isChecked(),
ui->playLoop->isChecked());
}
}