diff --git a/frame/item/appitem.cpp b/frame/item/appitem.cpp index cf5478f75..9385a5909 100644 --- a/frame/item/appitem.cpp +++ b/frame/item/appitem.cpp @@ -356,7 +356,9 @@ void AppItem::wheelEvent(QWheelEvent *e) { QWidget::wheelEvent(e); - m_itemEntryInter->PresentWindows(); + if (qAbs(e->angleDelta().y()) > 20) { + m_itemEntryInter->PresentWindows(); + } } void AppItem::resizeEvent(QResizeEvent *e)