2018-07-11 19:18:50 +01:00
|
|
|
#ifndef NOSCROLLCOMBOBOX_H
|
|
|
|
#define NOSCROLLCOMBOBOX_H
|
|
|
|
|
|
|
|
#include <QComboBox>
|
|
|
|
|
2021-02-18 00:20:14 +00:00
|
|
|
class NoScrollComboBox : public QComboBox {
|
2018-07-11 19:18:50 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2021-02-18 00:20:14 +00:00
|
|
|
explicit NoScrollComboBox(QWidget* parent = nullptr);
|
|
|
|
void wheelEvent(QWheelEvent* event);
|
2018-07-11 19:18:50 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // NOSCROLLCOMBOBOX_H
|