Yes, I have used the debugger. The event is called and it has no effect.
Right, I have disabled both scrollbars.

Qt Code:
  1. this->myView = new QGraphicsView(this->myScene);
  2. this->myView->setViewportUpdateMode(QGraphicsView::BoundingRectViewportUpdate);
  3. this->myView->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
  4. this->myView->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
  5. this->myView->centerOn(0, 0);
  6. this->myView->setFixedWidth(110);
  7. this->myView->setDragMode(QGraphicsView::NoDrag);
  8. this->myView->setFocusPolicy(Qt::NoFocus);
  9. this->myView->installEventFilter(new MouseEventFilter(this));
To copy to clipboard, switch view to plain text mode