1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-26 01:39:05 -05: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:40:34 +01:00 committed by GitHub
parent f4e2ac61f8
commit bef050fc7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -344,6 +344,8 @@ void ValueDial::wheelEvent(QWheelEvent* event)
}
setValue(m_valueNew);
emit changed(m_valueNew);
event->accept();
}
}