Skip to content

Commit

Permalink
Merge PR #6574: FIX(client): Save local volume adjustment when clicki…
Browse files Browse the repository at this point in the history
…ng slider bar
  • Loading branch information
Hartmnt authored Sep 28, 2024
2 parents fcd105c + 6066501 commit 1a379c9
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 1a379c9

Please sign in to comment.