hovering over child widgets, Qt::WA_NoMousePropagation not working
-
Hi
Seems parent widget always get a hover when you enter its area even if a child
is covering the entry area
Not sure its a bug or by design. Lets see what others say.
-
Hi,
Can you share your test sample ?
-
-
It is used in QComboBox.
Did you already saw the QHoverEvent description especially the part about propagation ?
-
It is used in QComboBox.
Are you sure ? , because its not working for my QComboboxes neither!
Mouse is over the left history button in this picture.Did you already saw the QHoverEvent description especially the part about propagation ?
I did. This link is actually also in my original question.
-
Hi
The sample sets Qt::WA_NoMousePropagation on "CHILD"
in mainwindows ctor but it made no difference.The CHILD label seems to be aligned with Parents client rect and in theory
cursor should be able to enter the CHILD directly but i suspect the truth is
that entering a widget always enters the parent first regardless of the visual
representation.