Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issue preventing QSY when the user clicks 'Change Frequency'. #467

Merged
merged 3 commits into from
Jul 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion USER_MANUAL.html
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ <h2 data-number="17.1" id="v1.8.12-tbd-2023"><span class="header-section-number"
</ul></li>
<li>Enhancements:
<ul>
<li>Add the ability to request that another FreeDV Reporter user QSY. (PR #434, #453, #456, #458, #459)</li>
<li>Add the ability to request that another FreeDV Reporter user QSY. (PR #434, #453, #456, #458, #459, #467)</li>
<li>Display ‘Digital’ on button when Analog mode is active. (PR #447)</li>
<li>Set minimum size for Mode box to 250px. (PR #446)</li>
<li>Notify FreeDV Reporter if only capable of RX. (PR #449)</li>
Expand Down
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, #458, #459)
* Add the ability to request that another FreeDV Reporter user QSY. (PR #434, #453, #456, #458, #459, #467)
* 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
Binary file modified USER_MANUAL.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1935,7 +1935,7 @@ void MainFrame::performFreeDVOn_()
}

auto answer = messageDialog.ShowModal();
if (answer == wxYES)
if (answer == wxID_YES)
{
// This will implicitly cause Hamlib to change the frequecy and mode.
m_cboReportFrequency->SetValue(wxString::Format("%.4f", frequencyMHz));
Expand Down