Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
Mouse release event not received
-
Hi
I have a widget for which I have implemented mouse press and release event handlers -void mousePressEvent(QMouseEvent *mouseEvent); void mouseReleaseEvent(QMouseEvent *mouseEvent);
My problem is that mousePressEvent is called whereas mouseReleaseEvent is not.
What are the possible causes of this?
Thanks
-
@GrahamLa Add "override" and see whether it builds:
void mouseReleaseEvent(QMouseEvent *mouseEvent) override;
And how do you check whether it is called or not?
Also what is the base class?