diff --git a/src/plugins/coreplugin/manhattanstyle.cpp b/src/plugins/coreplugin/manhattanstyle.cpp index 9be20a25373..af050a3e850 100644 --- a/src/plugins/coreplugin/manhattanstyle.cpp +++ b/src/plugins/coreplugin/manhattanstyle.cpp @@ -390,6 +390,10 @@ int ManhattanStyle::styleHint(StyleHint hint, const QStyleOption *option, const if (widget && widget->inherits("QTreeView")) ret = 0; break; + case QStyle::SH_ComboBox_AllowWheelScrolling: + // Turn this off completely to prevent accidental current index change on a scroll view + ret = false; + break; default: break; }