void DolphinIconsView::wheelEvent(QWheelEvent* event)
{
// let Ctrl+wheel events propagate to the DolphinView for icon zooming
- // (installing an event filter does not work, as the wheel event is handled first)
if (event->modifiers() & Qt::ControlModifier) {
event->ignore();
return;