Skip to content

Commit

Permalink
Changed after the PR review
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg68 committed Mar 11, 2025
1 parent 8b3774f commit cec11a5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions help/grandorgue.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5691,11 +5691,11 @@ role="bold">Group</emphasis> attribute are grouped in the same submenu.
<title>Minimum amplitude level</title>
<para>
Linear sound amplitude scale factor when the enclosure is closed. The
allowed range is {0, +10}.
allowed range is 0, 100.
</para>
<para>
0 means full silence. 100 means the enclosure does not affect the
windchests volume at all.
0 means complete silence. 100 means the enclosure does not affect the
windchest volume at all.
</para>
</sect2>
</sect1>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ void GOOrganSettingsDialog::ButtonStatesChanged() {
auto pTab = dynamic_cast<GOOrganSettingsTab *>(GetBook()->GetCurrentPage());

if (pTab) {
bool isDistributeAnabled = pTab->IsDistributeAudioEnabled();
bool isDistributeEnabled = pTab->IsDistributeAudioEnabled();

m_AudioGroupAssistant->Enable(isDistributeAnabled);
m_AudioGroupAssistant->Enable(isDistributeEnabled);
m_Default->Enable(pTab->IsDefaultEnabled());
m_Discard->Enable(pTab->IsRevertEnabled());
m_Apply->Enable(pTab->IsApplyEnabled());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ GOOrganSettingsEnclosuresTab::GOOrganSettingsEnclosuresTab(
wxEXPAND | wxTOP | wxRIGHT | wxBOTTOM,
5);
mainSizer->Add(
new wxStaticText(this, wxID_ANY, _("Minimal amplitude level:")),
new wxStaticText(this, wxID_ANY, _("Minimum amplitude level:")),
wxGBPosition(3, 1),
wxDefaultSpan,
wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL | wxLEFT | wxBOTTOM,
Expand Down

0 comments on commit cec11a5

Please sign in to comment.