diff --git a/Components/CustomScrollBar.qml b/Components/CustomScrollBar.qml index d58888b..e68894e 100644 --- a/Components/CustomScrollBar.qml +++ b/Components/CustomScrollBar.qml @@ -18,14 +18,6 @@ ScrollBar { implicitWidth: Appearance.padding.extraSmall * 2 contentItem: Item { - MouseArea { - id: mouse - - acceptedButtons: Qt.NoButton - anchors.fill: parent - cursorShape: Qt.PointingHandCursor - hoverEnabled: true - } } Behavior on position { enabled: !fullMouse.pressed @@ -89,6 +81,15 @@ ScrollBar { type: Anim.DefaultEffects } } + + MouseArea { + id: mouse + + acceptedButtons: Qt.NoButton + anchors.fill: parent + cursorShape: Qt.PointingHandCursor + hoverEnabled: true + } } }