Skip to content

Commit

Permalink
Merge pull request #336 from drowe67/ms-audio-dialog-layout
Browse files Browse the repository at this point in the history
Add a bit of extra space for the sample rate drop-downs.
  • Loading branch information
tmiw authored Jan 2, 2023
2 parents e4a4fdb + e801f7a commit 675b8e2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions USER_MANUAL.html
Original file line number Diff line number Diff line change
Expand Up @@ -571,6 +571,10 @@ <h2 data-number="16.1" id="tbd-tbd-2023"><span class="header-section-number">16.
<ul>
<li>Remove “force sync” option from Tools-&gt;Options (PR #332)</li>
</ul></li>
<li>Bugfixes:
<ul>
<li>Add a bit of extra space for the sample rate drop-downs. (PR #336)</li>
</ul></li>
</ol>
<h2 data-number="16.2" id="v1.8.6-december-2022"><span class="header-section-number">16.2</span> V1.8.6 December 2022</h2>
<ol type="1">
Expand Down
2 changes: 2 additions & 0 deletions USER_MANUAL.md
Original file line number Diff line number Diff line change
Expand Up @@ -784,6 +784,8 @@ LDPC | Low Density Parity Check Codes - a family of powerful FEC codes

1. Code Cleanup:
* Remove "force sync" option from Tools->Options (PR #332)
2. Bugfixes:
* Add a bit of extra space for the sample rate drop-downs. (PR #336)

## V1.8.6 December 2022

Expand Down
Binary file modified USER_MANUAL.pdf
Binary file not shown.
8 changes: 4 additions & 4 deletions src/dlg_audiooptions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ AudioOptsDialog::AudioOptsDialog(wxWindow* parent, wxWindowID id, const wxString
m_staticText6 = new wxStaticText(m_panelRx, wxID_ANY, _("Sample Rate:"), wxDefaultPosition, wxDefaultSize, 0);
m_staticText6->Wrap(-1);
bSizer811->Add(m_staticText6, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
m_cbSampleRateRxIn = new wxComboBox(m_panelRx, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(90,-1), 0, NULL, wxCB_DROPDOWN);
m_cbSampleRateRxIn = new wxComboBox(m_panelRx, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(100,-1), 0, NULL, wxCB_DROPDOWN);
bSizer811->Add(m_cbSampleRateRxIn, 0, wxALIGN_CENTER_VERTICAL|wxALL, 1);

bSizer811a->Add(bSizer811, 0, wxEXPAND, 5);
Expand Down Expand Up @@ -145,7 +145,7 @@ AudioOptsDialog::AudioOptsDialog(wxWindow* parent, wxWindowID id, const wxString
m_staticText10 = new wxStaticText(m_panelRx, wxID_ANY, _("Sample Rate:"), wxDefaultPosition, wxDefaultSize, 0);
m_staticText10->Wrap(-1);
bSizer81->Add(m_staticText10, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
m_cbSampleRateRxOut = new wxComboBox(m_panelRx, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(90,-1), 0, NULL, wxCB_DROPDOWN);
m_cbSampleRateRxOut = new wxComboBox(m_panelRx, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(100,-1), 0, NULL, wxCB_DROPDOWN);
bSizer81->Add(m_cbSampleRateRxOut, 0, wxALIGN_CENTER_VERTICAL|wxALL, 1);

bSizer81a->Add(bSizer81, 0, wxEXPAND, 5);
Expand Down Expand Up @@ -187,7 +187,7 @@ AudioOptsDialog::AudioOptsDialog(wxWindow* parent, wxWindowID id, const wxString
m_staticText11 = new wxStaticText(m_panelTx, wxID_ANY, _("Sample Rate:"), wxDefaultPosition, wxDefaultSize, 0);
m_staticText11->Wrap(-1);
bSizer83->Add(m_staticText11, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
m_cbSampleRateTxIn = new wxComboBox(m_panelTx, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(90,-1), 0, NULL, wxCB_DROPDOWN);
m_cbSampleRateTxIn = new wxComboBox(m_panelTx, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(100,-1), 0, NULL, wxCB_DROPDOWN);
bSizer83->Add(m_cbSampleRateTxIn, 0, wxALL, 1);

bSizer83a->Add(bSizer83, 0, wxEXPAND, 5);
Expand Down Expand Up @@ -216,7 +216,7 @@ AudioOptsDialog::AudioOptsDialog(wxWindow* parent, wxWindowID id, const wxString
m_staticText71 = new wxStaticText(m_panelTx, wxID_ANY, _("Sample Rate:"), wxDefaultPosition, wxDefaultSize, 0);
m_staticText71->Wrap(-1);
bSizer82->Add(m_staticText71, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
m_cbSampleRateTxOut = new wxComboBox(m_panelTx, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(90,-1), 0, NULL, wxCB_DROPDOWN);
m_cbSampleRateTxOut = new wxComboBox(m_panelTx, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(100,-1), 0, NULL, wxCB_DROPDOWN);
bSizer82->Add(m_cbSampleRateTxOut, 0, wxALL, 1);

bSizer82a->Add(bSizer82, 0, wxEXPAND, 5);
Expand Down

0 comments on commit 675b8e2

Please sign in to comment.