Disable certain mouse wheel events in Options dialog

The mouse wheel events for QComboBox & QSpinBox widgets in Options
dialog are filtered out.
This commit is contained in:
Chocobo1 2018-06-05 00:28:33 +08:00
parent 0b050e2a30
commit 96819f3798
No known key found for this signature in database
GPG key ID: 210D9C873253A68C
3 changed files with 21 additions and 21 deletions

View file

@ -485,10 +485,6 @@ void AdvancedSettings::loadAdvancedSettings()
template <typename T>
void AdvancedSettings::addRow(int row, const QString &rowText, T* widget)
{
// ignore mouse wheel event
static WheelEventEater filter;
widget->installEventFilter(&filter);
setItem(row, PROPERTY, new QTableWidgetItem(rowText));
setCellWidget(row, VALUE, widget);