Details
-
Bug
-
Resolution: Done
-
P2: Important
-
6.0.0 Beta2
-
None
-
a2209698d3584a7c05d0c12aa61de050fe0e78fd (qt/qtdeclarative/dev)
Description
If a readonly TextArea is placed inside Flickable, you cannot use touch to flick it, while mouse works correctly. Interestingly, if you first flick it with mouse, then you can also use touch events.
import QtQuick 2.15 import QtQuick.Window 2.15 Window { width: 640 height: 480 visible: true Flickable { anchors.fill: parent contentHeight: text.height TextEdit { id: text enabled: false text: "several\nlines\nof\ntext\n-\ntry\nto\nflick" } } }
Attachments
Issue Links
- relates to
-
QTBUG-90533 TextEdit with selectByMouse in Flickable with pressDelay should allow both flicking and text selection
- Reported