Skip to content

Commit

Permalink
Merge pull request #359 from drowe67/ms-easy-setup
Browse files Browse the repository at this point in the history
Fix typo preventing use of Easy Setup when not having a radio configured.
  • Loading branch information
tmiw authored Apr 9, 2023
2 parents 37a3368 + 0d03c39 commit e463794
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions USER_MANUAL.html
Original file line number Diff line number Diff line change
Expand Up @@ -597,6 +597,10 @@ <h2 data-number="16.1" id="v1.8.9-tbd-2023"><span class="header-section-number">
<li>Add 20% buffer for systems that are marginally able to decode 2020. (PR #355)</li>
<li>Enable RTS and DTR for PTT input to provide a voltage source for some footswitches. (PR #354)</li>
</ul></li>
<li>Bugfixes:
<ul>
<li>Fix typo preventing use of Easy Setup when not having a radio configured. (PR #359)</li>
</ul></li>
<li>Build system:
<ul>
<li>GitHub action now uses LLVM MinGW for pull requests. (PR #360)</li>
Expand Down
4 changes: 3 additions & 1 deletion USER_MANUAL.md
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,9 @@ LDPC | Low Density Parity Check Codes - a family of powerful FEC codes
1. Enhancements:
* Add 20% buffer for systems that are marginally able to decode 2020. (PR #355)
* Enable RTS and DTR for PTT input to provide a voltage source for some footswitches. (PR #354)
2. Build system:
2. Bugfixes:
* Fix typo preventing use of Easy Setup when not having a radio configured. (PR #359)
3. Build system:
* GitHub action now uses LLVM MinGW for pull requests. (PR #360)

## V1.8.8.1 March 2023
Expand Down
Binary file modified USER_MANUAL.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion src/dlg_easy_setup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1274,7 +1274,7 @@ bool EasySetupDialog::canTestRadioSettings_()
bool analogRecordDeviceSelected = m_analogDeviceRecord->GetSelection() >= 0;
bool soundDevicesConfigured = radioDeviceSelected && analogPlayDeviceSelected && analogRecordDeviceSelected;

bool noPttSelected = m_ckUseHamlibPTT->GetValue();
bool noPttSelected = m_ckNoPTT->GetValue();
bool hamlibSelected = m_ckUseHamlibPTT->GetValue();
bool serialSelected = m_ckUseSerialPTT->GetValue();

Expand Down

0 comments on commit e463794

Please sign in to comment.