Index: sources/gui/qml/compounds/CheckListScrollView.qml =================================================================== diff -u -rcdf80193148db0831cf2c1067732ddc6f6dac5fb -r83ffaef436920eba534cde428e14d168ea931bea --- sources/gui/qml/compounds/CheckListScrollView.qml (.../CheckListScrollView.qml) (revision cdf80193148db0831cf2c1067732ddc6f6dac5fb) +++ sources/gui/qml/compounds/CheckListScrollView.qml (.../CheckListScrollView.qml) (revision 83ffaef436920eba534cde428e14d168ea931bea) @@ -28,6 +28,8 @@ */ Item { id: _root + property var model: [] + ScrollBar { backColor: Colors.backgroundMain flickable: _listView @@ -36,7 +38,7 @@ } ListView { id: _listView - model: ["Step 1", "Step 2", "Step 3", "Step 4"] + model: _root.model clip: true spacing: 7 width: _root.width @@ -55,7 +57,7 @@ } color: Colors.textMain - text: qsTr("Test Description") + text: name elide: Text.ElideLeft font.pixelSize: 24 } @@ -76,8 +78,8 @@ } diameter: _delegate.height * 0.5 visible : true - done : true - failed : true + done : result < 2 + failed : result == 0 } } }