diff --git a/lib_source/qml/RibbonView.qml b/lib_source/qml/RibbonView.qml index 917b7e3..e2aa8a4 100644 --- a/lib_source/qml/RibbonView.qml +++ b/lib_source/qml/RibbonView.qml @@ -57,7 +57,7 @@ Item { anchors.right: flickview.right anchors.rightMargin: 2 } - boundsBehavior: Flickable.StopAtBounds + boundsBehavior: Flickable.DragOverBounds ColumnLayout{ id:container anchors{ @@ -83,4 +83,8 @@ Item { clip: true target_rect: Qt.rect(x,y-top_padding,width,height) } + + function scroll_to_bottom(){ + flickview.contentY = flickview.contentHeight - flickview.height + } }