I am working on a project where I need to use a graphicsView and use the zooming feature. My only problem is that some of the items need to zoom and others don't. Is there an easy way to tell object, "Ignore Scaling"?
Printable View
I am working on a project where I need to use a graphicsView and use the zooming feature. My only problem is that some of the items need to zoom and others don't. Is there an easy way to tell object, "Ignore Scaling"?
Set this flag to those items: QGraphicsItem::ItemIgnoresTransformations
You're a life saver thanks so much.