From 823e3aa950cf52eb4902a70e606f073af3c92795 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Tue, 26 Sep 2017 23:50:24 -0400 Subject: More updates for the GL widget set. Now all the mouse tracking/hovering is working - with one exception: All the mouse hover detection is based around mouse **movement** - so programmatic changes to a window will not detect the change in what is directly under the mouse without manual intervention in the code. --- src-qt5/src-glwidgets/gltest/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5/src-glwidgets/gltest/main.cpp') diff --git a/src-qt5/src-glwidgets/gltest/main.cpp b/src-qt5/src-glwidgets/gltest/main.cpp index c3edd088..972c4225 100644 --- a/src-qt5/src-glwidgets/gltest/main.cpp +++ b/src-qt5/src-glwidgets/gltest/main.cpp @@ -32,7 +32,7 @@ int main(int argc, char** argv){ anim.setEndValue(QRect(0,0,200,200)); anim.setDuration(1500); anim.setLoopCount(-1); - anim.start(); + //anim.start(); /*QPushButton but(&base); but.setText("button"); but.setGeometry(100,100,50,50); -- cgit