porymap/include/ui/noscrollcombobox.h

17 lines
285 B
C
Raw Normal View History

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