Hi all,
There is a big problem on windows 8 when changing the cursor of QGraphicsView using that :
Qt Code:
  1. void CEditorNodeView::mousePressEvent( QMouseEvent* event )
  2. {
  3. QGraphicsView::mousePressEvent( event );
  4. viewport()->setCursor( Qt::ArrowCursor );
  5. }
  6.  
  7. void CEditorNodeView::mouseReleaseEvent( QMouseEvent* event )
  8. {
  9. QGraphicsView::mouseReleaseEvent( event );
  10. viewport()->setCursor( Qt::ArrowCursor );
  11. }
To copy to clipboard, switch view to plain text mode 
The arrow change to hand cursor to go back to arrow cursor on both situation, press and release.
That makes the rendering really bad. I hope Qt has a workaround to make the rendering better.
Thanks for the help