From 966d8a6a2e58eddcefc8eacf42ea7c1a395338d5 Mon Sep 17 00:00:00 2001 From: Peter Hartmann Date: Tue, 2 Aug 2022 14:00:51 +0200 Subject: [PATCH] IOT dashboard: Comment out cube effect for now --- examples/iotdashboard/MainItem.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/iotdashboard/MainItem.cpp b/examples/iotdashboard/MainItem.cpp index e8507e66..6e283c24 100644 --- a/examples/iotdashboard/MainItem.cpp +++ b/examples/iotdashboard/MainItem.cpp @@ -109,7 +109,8 @@ void MainItem::gestureEvent( QskGestureEvent* event ) direction = ( delta.y() < 0 ) ? Qsk::TopToBottom : Qsk::BottomToTop; } - m_cube->startAnimation( direction ); + // ### uncomment once animations are working: +// m_cube->startAnimation( direction ); } }