Skip to content

Commit

Permalink
Adjust minimum monitor volume to -40 dB.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmiw committed Jul 13, 2024
1 parent bc924e8 commit 80e52e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/dialogs/monitor_volume_adj.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ MontiorVolumeAdjPopup::MontiorVolumeAdjPopup( wxWindow* parent, ConfigurationDat
wxStaticText* controlLabel = new wxStaticText(this, wxID_ANY, wxT("Monitor volume (dB):"), wxDefaultPosition, wxDefaultSize, 0);
mainSizer->Add(controlLabel, 0, wxALL | wxEXPAND, 2);

volumeSlider_ = new wxSlider(this, wxID_ANY, configVal, -20, 0, wxDefaultPosition, wxDefaultSize, wxSL_AUTOTICKS | wxSL_LABELS);
volumeSlider_ = new wxSlider(this, wxID_ANY, configVal, -40, 0, wxDefaultPosition, wxDefaultSize, wxSL_AUTOTICKS | wxSL_LABELS);
mainSizer->Add(volumeSlider_, 0, wxALL | wxEXPAND, 2);

SetSizerAndFit(mainSizer);
Expand Down

0 comments on commit 80e52e4

Please sign in to comment.