mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2026-06-01 21:45:00 -04:00
Defer dwonloading LoTW users file until "Settings->Colors->Fetch" button pressed
This change also repairs a defect in showing potential LoTW users when the "Settings->General->Show DXCC, grid, and worked before status" option is not checked.
This commit is contained in:
@@ -400,7 +400,11 @@ void DisplayText::displayDecodedText(DecodedText const& decodedText, QString con
|
||||
}
|
||||
else
|
||||
{
|
||||
highlight_types types {Highlight::CQ, Highlight::LotW};
|
||||
highlight_types types {Highlight::CQ};
|
||||
if (m_config && m_config->lotw_users ().user (decodedText.CQersCall()))
|
||||
{
|
||||
types.push_back (Highlight::LotW);
|
||||
}
|
||||
set_colours (m_config, &bg, &fg, types);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user