Don't set RX frequency if offline mode is active

This commit is contained in:
phl0 2020-09-02 14:06:53 +02:00
parent 4cdbd2d567
commit 32bff318b4
No known key found for this signature in database
GPG Key ID: 48EA1E640798CA9A

View File

@ -375,7 +375,8 @@ begin
if not TryStrToFloat(cqrini.ReadString('NewQSO','RXLO',''),rxlo) then
rxlo := 0;
if (f + rxlo <> 0) then
frmNewQSO.edtRXFreq.Text := FloatToStr((f + rxlo));
if not frmNewQSO.cbOffline.Checked then
frmNewQSO.edtRXFreq.Text := FloatToStr((f + rxlo));
end;
end
else