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