1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-07 16:34:45 -04:00

SSB Modulator: working... restored file play loop after correction in CW Keyer GUI

This commit is contained in:
f4exb
2016-12-14 02:57:47 +01:00
parent 5000e01063
commit b45ecd2418
5 changed files with 58 additions and 13 deletions
+8 -1
View File
@@ -338,9 +338,15 @@ void SSBModGUI::on_volume_valueChanged(int value)
void SSBModGUI::on_audioMute_toggled(bool checked)
{
qDebug() << "SSBModGUI::on_audioMute_toggled: " << checked << ":" << ui->audioMute->isChecked();
applySettings();
}
void SSBModGUI::on_playLoop_toggled(bool checked)
{
applySettings();
}
void SSBModGUI::on_play_toggled(bool checked)
{
ui->tone->setEnabled(!checked); // release other source inputs
@@ -601,7 +607,8 @@ void SSBModGUI::applySettings()
ui->audioBinaural->isChecked(),
ui->audioFlipChannels->isChecked(),
ui->dsb->isChecked(),
ui->audioMute->isChecked());
ui->audioMute->isChecked(),
ui->playLoop->isChecked());
}
}