1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-28 15:56:33 -04:00

fix QtWheelEvent propagation

as described here
http://www.setnode.com/blog/mouse-wheel-events-event-filters-and-qscrollarea/
This commit is contained in:
fire 2018-02-12 01:43:04 +01:00 committed by GitHub
parent bef050fc7e
commit 30111bdca0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -428,6 +428,7 @@ void ValueDialZ::wheelEvent(QWheelEvent* event)
setValue(m_valueNew);
emit changed(m_valueNew);
event->accept();
}
}