Tumbler on android not working
Unsolved
Mobile and Embedded
-
Hello!
I think, i found a bug.
The tumbler can't be scrolled, dragged or flicked. It moves only a few pixels.
This happens only:- with button delegates
- when wrap is true (or with PathView as contentItem)
- on android (afaik)
- with Qt > 6.5.3
import QtQuick import QtQuick.Controls Window { visibility: Window.Maximized Tumbler { model: 10 anchors.fill: parent wrap: true delegate: Button { text: modelData } // wrap: false // delegate: Text { // horizontalAlignment: Text.AlignHCenter // text: modelData // } } }
I am pretty surprised, that such a heavy bug survived so many Qt updates...
I'll create a bug report, except someone finds a mistake in my very small code-sample.
Or knows some other reason, maybe android...
And i would be very glad, if someone could find a quick fix, maybe it's a focus issue... -
It's already reported as a bug.
https://bugreports.qt.io/browse/QTBUG-133228And i found a workaround:
TapHandler, HoverHandler and MouseArea are not affected.