band map didn't show any data on SSB - fixed

This commit is contained in:
Petr Hlozek 2016-03-06 17:30:27 +01:00
parent c8d1b4b38c
commit 8ab7fbfc20
2 changed files with 19 additions and 4 deletions

View File

@ -18,6 +18,7 @@ Legend:
- cqrlog didn't start with broken TRX/Rotor control configuration - fixed
- fixed loading of MASTER.SCP after downloading new DXCC tables
- QSO with mode in lower case was market as error and not imported - fixed
- band map didn't show any data on SSB - fixed
1.9.1 (2015-11-28)
+ support sending CW via HamLib library added

View File

@ -243,8 +243,15 @@ begin
if (FOnlyCurrMode) and (FCurrentMode<>'') then
begin
if BandMapItems[i].Mode<>FCurrentMode then
Continue
if ((FCurrentMode='LSB') or (FCurrentMode='USB')) then
begin
if BandMapItems[i].Mode<>'SSB' then
Continue
end
else begin
if BandMapItems[i].Mode<>FCurrentMode then
Continue
end
end;
if abs(FCurrentFreq-BandMapItems[i].Freq)<=DELTA_FREQ then
@ -754,8 +761,15 @@ begin
if (FOnlyCurrMode) and (FCurrentMode<>'') then
begin
if BandMapItems[i].Mode<>FCurrentMode then
Continue
if ((FCurrentMode='LSB') or (FCurrentMode='USB')) then
begin
if BandMapItems[i].Mode<>'SSB' then
Continue
end
else begin
if BandMapItems[i].Mode<>FCurrentMode then
Continue
end
end;
if UseDefaultColor then