Tumbler Object: How to disable the editing through touch
Solved
Qt for MCUs
-
Hello,
I have a Tumbler object used for updating time. The tumbler used for "seconds" updates continuously.
And when the spinner of the tumbler is swiped up/down, the tumbler wheel spins. I want to disable this editing of the Tumbler spinner through touch. Please help me to know if there is any property to do this? -
Problem Fixed:
Tumbler inherits a property called "enabled" from "Item".
This property holds whether the item receives mouse and keyboard events. By default this is true.
Changing "enabled" to false solved the issue.