Index: sources/gui/qml/compounds/CheckListView.qml =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -ra7aab61ca63538c37b6931c60252680fc2ec2416 --- sources/gui/qml/compounds/CheckListView.qml (.../CheckListView.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/qml/compounds/CheckListView.qml (.../CheckListView.qml) (revision a7aab61ca63538c37b6931c60252680fc2ec2416) @@ -52,6 +52,7 @@ function setClear (vModel) { vModel.stepStart = false ; vModel.stepDone = false } function setWait (vModel) { vModel.stepStart = true ; vModel.stepDone = false } function setDone (vModel) { vModel.stepStart = true ; vModel.stepDone = true } + function setItemExt (vIndex, vEntered) { let goBak = pIndex > vIndex let goTop = pIndex < vIndex @@ -139,12 +140,13 @@ verticalAlignment: Text.AlignVCenter text : modelData anchors.fill: parent - color : Colors.textMain + color : Colors.offWhite font.pixelSize: Fonts.fontPixelStateListText } Line { id: _separatorLine length : _delegate.width + 2 * linePad - thickness : 2 + thickness : 1 + color : Colors.checkListLine anchors { bottom : _delegate.bottom left : _delegate.left