fix: CQRLOG looked like frozen after start without settings own callsing

This commit is contained in:
Petr Hlozek 2022-05-29 15:03:59 +02:00
parent 85815acd15
commit c2173a6b6a

View File

@ -7582,6 +7582,12 @@ end;
procedure TfrmNewQSO.CheckForExternalTablesUpdate;
begin
//when the callsign is not filled in, the iformation window appears
//without this, the info about new dxcctables appeard first and was
//covered by information window. Program looked like frozen
if cqrini.ReadString('Station','Call','') = '' then
exit;
CheckForDXCCTablesUpdate;
CheckForDOKTablesUpdate;
CheckForQslManagersUpdate;