I'm deriving a class from QGraphicsLineItem, where I've set it to be selectable, i.e.,

class Link : public QGraphicsLineItem
{
// constructor
Link() { ...
setFlags (QGraphicsItem::ItemIsSelectable);
}
}


How can I make it's focus rectangle either transparent or turn it off with a flag?

Thanks,
Ron