diff --git a/src/qml/presenter/ServiceList.qml b/src/qml/presenter/ServiceList.qml index 6f536a9..ea41e90 100644 --- a/src/qml/presenter/ServiceList.qml +++ b/src/qml/presenter/ServiceList.qml @@ -87,7 +87,11 @@ Item { ListView { id: serviceItemList - anchors.fill: parent + anchors.top: parent.top + anchors.bottom: parent.bottom + anchors.left: parent.left + width: serviceListScrollBar.visible ? + parent.width - serviceListScrollBar.width : parent.width clip: true spacing: 3 property int indexDragged @@ -307,8 +311,12 @@ Item { } Controls.ScrollBar.vertical: Controls.ScrollBar { - anchors.right: serviceItemList.right - anchors.rightMargin: 0 + id: serviceListScrollBar + parent: serviceItemList.parent + anchors.right: background.right + anchors.left: serviceItemList.right + anchors.top: serviceItemList.top + anchors.bottom: serviceItemList.bottom active: hovered || pressed }