mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-21 11:31:51 -05:00
Repair a defect in band/mode matching in the frequency list
This defect could cause the incorrect number of columns and incorrect column headings in the WSPR Band Hopping schedule settings.
This commit is contained in:
parent
46333a228d
commit
7f47e67026
@ -965,8 +965,11 @@ auto FrequencyList_v2::all_bands (Region region, Mode mode) const -> BandSet
|
||||
BandSet result;
|
||||
for (auto const& item : m_->frequency_list_)
|
||||
{
|
||||
if (region == IARURegions::ALL || item.region_ == region
|
||||
|| mode == Modes::ALL || item.mode_ == mode)
|
||||
// Match frequencies that are for all regions, for the specified
|
||||
// region (which can also be "all"), and where the mode matches
|
||||
// the specified mode (which can also be "all").
|
||||
if ((region == IARURegions::ALL || item.region_ == IARURegions::ALL || item.region_ == region)
|
||||
&& (mode == Modes::ALL || item.mode_ == Modes::ALL || item.mode_ == mode))
|
||||
{
|
||||
result << m_->bands_->find (item.frequency_);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user