QGraphicsProxyWidget::conetextMenuEvent question
-
Not sure if this a bug, but here we go. QGraphicsProxyWidget::contextMenuEvent has the following easy out check,
@
void QGraphicsProxyWidget::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
{
Q_D(QGraphicsProxyWidget);
if (!event || !d->widget || !d->widget->isVisible() || !hasFocus())
return;
@The QGraphicsSceneContextMenuEvent that is passed in defaults to accepted. If you return immediately, should not the proxy then ignore the event?