diff --git a/src/CHANGELOG b/src/CHANGELOG index a84b655..7b18925 100644 --- a/src/CHANGELOG +++ b/src/CHANGELOG @@ -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 diff --git a/src/fBandMap.pas b/src/fBandMap.pas index 50092d9..da5023e 100644 --- a/src/fBandMap.pas +++ b/src/fBandMap.pas @@ -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