Details
-
Bug
-
Resolution: Fixed
-
P1: Critical
-
6.5.1
-
None
-
Linux e5-2620v2 6.3.5-arch1-1 #1 SMP PREEMPT_DYNAMIC Tue, 30 May 2023 13:44:01 +0000 x86_64 GNU/Linux
-
-
cb6442889 (dev), c4bf148ba (6.6), 08cce27c5 (6.5)
Description
Example showing off the bug:
import QtQuick 2.0 Item { anchors.fill: parent ListView { width: contentWidth height: contentHeight delegate: Row{ Text { text: modelData.text } } Component.onCompleted: { model = [{"text":"Chart (AUD/CAD) (5m)","type":"chart","visible":true},{"text":"LR Channel 1 (15m) (100, 100) (2)","type":"indicator","update extents":true,"visible":false},{"text":"LR (1D) (100)","type":"indicator","update extents":false,"visible":true}] } } }
qmlscene (Qt5) displays a ListView successfully, but qmlscene6 shows nothing.