From a989fefa0b9d478919b1fcae117bdc227085fbb7 Mon Sep 17 00:00:00 2001 From: Warchamp7 Date: Fri, 7 Jun 2024 16:16:20 -0400 Subject: [PATCH] UI: Fix audio meter and slider blocking mousewheel --- UI/absolute-slider.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/UI/absolute-slider.cpp b/UI/absolute-slider.cpp index 449e2c490..7efde7c0f 100644 --- a/UI/absolute-slider.cpp +++ b/UI/absolute-slider.cpp @@ -65,9 +65,6 @@ bool AbsoluteSlider::eventFilter(QObject *obj, QEvent *event) } } - if (event->type() == QEvent::Wheel) - return true; - return QSlider::eventFilter(obj, event); }