Skip to content

Commit

Permalink
Make TX rows in FreeDV Reporter easier to read.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmiw committed Jul 3, 2023
1 parent dca9a6c commit 67883e7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/freedv_reporter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -327,11 +327,15 @@ void FreeDVReporterDialog::onTransmitUpdateFn_(std::string sid, std::string last
if (transmitting)
{
txStatus = "Transmitting";
m_listSpots->SetItemBackgroundColour(index, *wxRED);

wxColour lightRed(0xfc, 0x45, 0x00);
m_listSpots->SetItemBackgroundColour(index, lightRed);
m_listSpots->SetItemTextColour(index, *wxWHITE);
}
else
{
m_listSpots->SetItemBackgroundColour(index, wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOX));
m_listSpots->SetItemTextColour(index, wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOXTEXT));
}

m_listSpots->Freeze();
Expand Down

0 comments on commit 67883e7

Please sign in to comment.