Revert "Handle null input devices in WheelEvent"
This reverts commit c342d57116
.
This commit is contained in:
parent
a23ebe12ac
commit
4bf9a208c9
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ MouseEvent::MouseEvent(QEvent::Type type, const QPointF &pos, Qt::MouseButton bu
|
|||
WheelEvent::WheelEvent(const QPointF &pos, qreal delta, qint32 deltaV120, Qt::Orientation orientation,
|
||||
Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers, InputRedirection::PointerAxisSource source,
|
||||
std::chrono::microseconds timestamp, InputDevice *device)
|
||||
: QWheelEvent(pos, pos, QPoint(), (orientation == Qt::Horizontal) ? QPoint(delta, 0) : QPoint(0, delta), buttons, modifiers, Qt::NoScrollPhase, device ? device->isNaturalScroll() : false)
|
||||
: QWheelEvent(pos, pos, QPoint(), (orientation == Qt::Horizontal) ? QPoint(delta, 0) : QPoint(0, delta), buttons, modifiers, Qt::NoScrollPhase, device->isNaturalScroll())
|
||||
, m_device(device)
|
||||
, m_orientation(orientation)
|
||||
, m_delta(delta)
|
||||
|
|
Loading…
Reference in a new issue