1
0

spinbox-ignorewheel.cpp 287 B

1234567891011121314
  1. #include "spinbox-ignorewheel.hpp"
  2. SpinBoxIgnoreScroll::SpinBoxIgnoreScroll(QWidget *parent) : QSpinBox(parent)
  3. {
  4. setFocusPolicy(Qt::StrongFocus);
  5. }
  6. void SpinBoxIgnoreScroll::wheelEvent(QWheelEvent *event)
  7. {
  8. if (!hasFocus())
  9. event->ignore();
  10. else
  11. QSpinBox::wheelEvent(event);
  12. }