Is it possible to use tooltips on widgets that is place in a QScene with QGraphicsProxyWidget?

The following is a simplified version of what I am trying to do:

Qt Code:
  1. QListWidget* list = new QListWidget();
  2. list->setToolTip("This is my tooltip");
  3. scene->addWidget(list);
To copy to clipboard, switch view to plain text mode 

I can see my listbox and I can click and select items, etc. But the tooltip is never displayed.