combobox-ignorewheel.cpp 293 B

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