-
Bug
-
Resolution: Out of scope
-
P3: Somewhat important
-
4.6.3
-
None
-
linux
Following situation:
QWidget p;
QWidget c(p);
p.setMouseTracking(true);
c.setEnabled(false);
if the mouse moves over widget c, then p gets mousemove events only if pressing a button.
after c.setMouseTracking(true) p will get all mouse events.