[pim/kmail] src/widgets: Add missing accept event
Laurent Montel <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 28f834db983c8ad52b82e1a95cdb59f62f9bc06b by Laurent Montel.
Committed on 13/08/2026 at 19:16.
Pushed by mlaurent into branch 'master'.
Add missing accept event
M +1 -0 src/widgets/zoomlabelwidget.cpp
https://invent.kde.org/pim/kmail/-/commit/28f834db983c8ad52b82e1a95cdb59f62f9bc06b
diff --git a/src/widgets/zoomlabelwidget.cpp b/src/widgets/zoomlabelwidget.cpp
index 9b09199e6..1571271e6 100644
--- a/src/widgets/zoomlabelwidget.cpp
+++ b/src/widgets/zoomlabelwidget.cpp
@@ -34,6 +34,7 @@ void ZoomLabelWidget::wheelEvent(QWheelEvent *event)
} else if (y > 0) {
Q_EMIT changeZoom(mZoomFactor + 10);
}
+ event->accept();
}
void ZoomLabelWidget::mousePressEvent([[maybe_unused]] QMouseEvent *event)