mirror of
https://github.com/huderlem/porymap.git
synced 2026-03-26 12:04:51 -05:00
18 lines
285 B
C++
18 lines
285 B
C++
#ifndef NOSCROLLCOMBOBOX_H
|
|
#define NOSCROLLCOMBOBOX_H
|
|
|
|
#include <QComboBox>
|
|
|
|
class NoScrollComboBox : public QComboBox
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit NoScrollComboBox(QWidget *parent = nullptr);
|
|
void wheelEvent(QWheelEvent *event);
|
|
|
|
private:
|
|
};
|
|
|
|
#endif // NOSCROLLCOMBOBOX_H
|