I have a custom QGraphicsItem's with a QToolTip. When hovering with the mouse on them the toolTip shows fine, but there is a small delay before the toolTip shows.
How can I decrease that delay, so the toolTip will shows immediately?
Thanks.
|
|
|
In the documentation for QWidget::mouseMoveEvent(QMouseEvent*) you can read the following description:
But instead of using the mouseMoveEvent, you could also use the QWidget::enterEvent(QEvent*). |
|||
|
|