#36
1.4.0
PianetaRadio 2023-02-22 20:32:58 +01:00 zatwierdzone przez GitHub
rodzic 068922c6b6
commit b8ce26670e
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 6 dodań i 2 usunięć

Wyświetl plik

@ -382,7 +382,7 @@ void MainWindow::guiUpdate()
{
if(timer->isActive()) timer->stop();
ui->pushButton_Power->setChecked(false);
ui->statusbar->showMessage("Power off");
ui->statusbar->showMessage("Radio off");
}
//* VFOs
@ -779,7 +779,11 @@ void MainWindow::on_pushButton_Power_toggled(bool checked)
ui->pushButton_Power->setChecked(false); //Uncheck the button
ui->statusbar->showMessage(rigerror(retcode));
}
else timer->start(rigCom.rigRefresh);
else
{
rigGet.onoff = RIG_POWER_ON;
timer->start(rigCom.rigRefresh);
}
}
else if (!checked && rigGet.onoff)
{