Skip to content

Commit

Permalink
Merge branch 'ms-reporter-bg-color' into ms-rel-v1812
Browse files Browse the repository at this point in the history
  • Loading branch information
tmiw committed Jul 3, 2023
2 parents e28ced4 + 714c4bc commit 5b9967d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion USER_MANUAL.md
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,7 @@ LDPC | Low Density Parity Check Codes - a family of powerful FEC codes
* Disable PTT and Voice Keyer buttons if only RX devices are configured. (PR #449)
* Fix Linux display bugs when switching between dark and light mode. (PR #454)
2. Enhancements:
* Add the ability to request that another FreeDV Reporter user QSY. (PR #434, #453, #456)
* Add the ability to request that another FreeDV Reporter user QSY. (PR #434, #453, #456, #458)
* Display 'Digital' on button when Analog mode is active. (PR #447)
* Set minimum size for Mode box to 250px. (PR #446)
* Notify FreeDV Reporter if only capable of RX. (PR #449)
Expand Down
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 5b9967d

Please sign in to comment.