summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/charts/qchartview.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/charts/qchartview.cpp b/src/charts/qchartview.cpp
index 5ce41691..64d59970 100644
--- a/src/charts/qchartview.cpp
+++ b/src/charts/qchartview.cpp
@@ -250,9 +250,7 @@ void QChartView::mouseReleaseEvent(QMouseEvent *event)
#if QT_CONFIG(wheelevent)
void QChartView::wheelEvent(QWheelEvent *event)
{
- Q_UNUSED(event);
- // We just need to override wheelEvent, or scrolling won't work correctly on macOS trackpad
- // (QTBUG-77403)
+ QGraphicsView::wheelEvent(event);
}
#endif
#endif