diff --git a/resources/qml/Components/ResultDelegate.qml b/resources/qml/Components/ResultDelegate.qml index 8531c13..ec5f011 100644 --- a/resources/qml/Components/ResultDelegate.qml +++ b/resources/qml/Components/ResultDelegate.qml @@ -33,6 +33,19 @@ ColoredItemDelegate { NumberAnimation { target: partDel; property: "scale"; from: 0.8; to: 1.0; duration: 400 } } + Rectangle { + visible: widgetData["route_quota"] !== null && parseInt(widgetData["route_quota"]) - 1 === thisIndex + + anchors { + left: parent.left + right: parent.right + verticalCenter: parent.bottom + } + + height: 3 + color: Material.primaryTextColor + } + GridLayout { id: partDelCol