Skip to content

Commit

Permalink
Merge PR #2518: Reset to 0 dB on Local Volume Adjustment reset button
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrautz committed Aug 19, 2016
2 parents 3557cd2 + 3cb7334 commit 1603d08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mumble/UserLocalVolumeDialog.cpp
Expand Up @@ -88,7 +88,7 @@ void UserLocalVolumeDialog::on_qsbUserLocalVolume_valueChanged(int value) {

void UserLocalVolumeDialog::on_qbbUserLocalVolume_clicked(QAbstractButton *button) {
if (button == qbbUserLocalVolume->button(QDialogButtonBox::Reset)) {
qsUserLocalVolume->setValue(m_originalVolumeAdjustmentDecibel);
qsUserLocalVolume->setValue(0);
}
if (button == qbbUserLocalVolume->button(QDialogButtonBox::Ok)) {
ClientUser *user = ClientUser::get(m_clientSession);
Expand Down

0 comments on commit 1603d08

Please sign in to comment.