Skip to content

Commit

Permalink
Backport "Merge PR #6574: FIX(client): Save local volume adjustment w…
Browse files Browse the repository at this point in the history
…hen clicking slider bar" to 1.5.x (#6575)
  • Loading branch information
Hartmnt authored Sep 28, 2024
2 parents 997a847 + 32dcec7 commit f62999e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/mumble/VolumeSliderWidgetAction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ VolumeSliderWidgetAction::VolumeSliderWidgetAction(QWidget *parent)
&VolumeSliderWidgetAction::on_VolumeSlider_changeCompleted);
connect(wheelEventFilter, &MouseWheelEventObserver::wheelEventObserved, this,
&VolumeSliderWidgetAction::on_VolumeSlider_changeCompleted);
connect(mouseEventFilter, &MouseClickEventObserver::clickEventObserved, this,
&VolumeSliderWidgetAction::on_VolumeSlider_changeCompleted);

UpDownKeyEventFilter *eventFilter = new UpDownKeyEventFilter(this);
m_volumeSlider->installEventFilter(eventFilter);
Expand Down

0 comments on commit f62999e

Please sign in to comment.