Skip to content

Commit

Permalink
Merge pull request #717 from drowe67/ms-remove-snr-squelch-tooltip
Browse files Browse the repository at this point in the history
Remove TX attenuation and squelch tooltips.
  • Loading branch information
tmiw authored Apr 24, 2024
2 parents 2aceb5d + c3e04bc commit a840c80
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions USER_MANUAL.md
Original file line number Diff line number Diff line change
Expand Up @@ -892,6 +892,7 @@ LDPC | Low Density Parity Check Codes - a family of powerful FEC codes
## TBD TBD 2024

1. Bugfixes:
* Remove TX attenuation and squelch tooltips. (PR #717)
* Disable 800XA radio button when in RX Only mode. (PR #716)

## V1.9.9.1 April 2024
Expand Down
2 changes: 0 additions & 2 deletions src/topFrame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,6 @@ TopFrame::TopFrame(wxWindow* parent, wxWindowID id, const wxString& title, const
sbSizer3 = new wxStaticBoxSizer(squelchBox, wxVERTICAL);

m_sliderSQ = new wxSlider(squelchBox, wxID_ANY, 0, 0, 40, wxDefaultPosition, wxDefaultSize, wxSL_AUTOTICKS);
m_sliderSQ->SetToolTip(_("Set Squelch level in dB."));
m_sliderSQ->SetMinSize(wxSize(135,-1));

// Add accessibility class so that the values are read back correctly.
Expand Down Expand Up @@ -643,7 +642,6 @@ TopFrame::TopFrame(wxWindow* parent, wxWindowID id, const wxString& title, const

// Sliders are integer values, so we're multiplying min/max by 10 here to allow 1 decimal precision.
m_sliderTxLevel = new wxSlider(m_panel, wxID_ANY, g_txLevel, -300, 0, wxDefaultPosition, wxDefaultSize, wxSL_AUTOTICKS);
m_sliderTxLevel->SetToolTip(_("Sets TX attenuation (0-30dB))."));
m_sliderTxLevel->SetMinSize(wxSize(150,-1));
txLevelSizer->Add(m_sliderTxLevel, 1, wxALIGN_CENTER_HORIZONTAL, 0);

Expand Down

0 comments on commit a840c80

Please sign in to comment.