diff options
author | Ken Moore <ken@ixsystems.com> | 2017-09-26 23:50:24 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-09-26 23:50:24 -0400 |
commit | 823e3aa950cf52eb4902a70e606f073af3c92795 (patch) | |
tree | 3e98794fde3856db638134635fc85ecc8e81305b /src-qt5/src-glwidgets/gltest/main.cpp | |
parent | Update some more of the GL widget set and the test (diff) | |
download | lumina-823e3aa950cf52eb4902a70e606f073af3c92795.tar.gz lumina-823e3aa950cf52eb4902a70e606f073af3c92795.tar.bz2 lumina-823e3aa950cf52eb4902a70e606f073af3c92795.zip |
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.
Diffstat (limited to 'src-qt5/src-glwidgets/gltest/main.cpp')
-rw-r--r-- | src-qt5/src-glwidgets/gltest/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |