aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/src-glwidgets/gltest/main.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-09-26 23:50:24 -0400
committerKen Moore <ken@ixsystems.com>2017-09-26 23:50:24 -0400
commit823e3aa950cf52eb4902a70e606f073af3c92795 (patch)
tree3e98794fde3856db638134635fc85ecc8e81305b /src-qt5/src-glwidgets/gltest/main.cpp
parentUpdate some more of the GL widget set and the test (diff)
downloadlumina-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.cpp2
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);
bgstack15