Hi guys,

I have added a custom scene to the QGraphicsView object. Then I have create some items and added them to the scene. I do a lot of zooming in the graphicsview using:
QGraphicsView::scale(...)

This solution scales the whole QgraphicsView(changes the coordinate system, as you know). But I want my items not to change their sizes while zooming.

How Can I create some items in the scene/view that are ignoring the scaling?

Beforehand thanks.

Maverick