aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/pointer/fakeFlickable.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/pointer/fakeFlickable.qml')
-rw-r--r--tests/manual/pointer/fakeFlickable.qml29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/manual/pointer/fakeFlickable.qml b/tests/manual/pointer/fakeFlickable.qml
index 31e3d9f74c..22b23a00c8 100644
--- a/tests/manual/pointer/fakeFlickable.qml
+++ b/tests/manual/pointer/fakeFlickable.qml
@@ -48,7 +48,9 @@ Rectangle {
height: 480
FakeFlickable {
+ id: ff
anchors.fill: parent
+ anchors.rightMargin: rightSB.width
Row {
Item {
width: 100
@@ -85,4 +87,31 @@ Rectangle {
request.send()
}
}
+
+ ScrollBar {
+ id: rightSB
+ objectName: "rightSB"
+ flick: ff
+ height: parent.height - width
+ anchors.right: parent.right
+ }
+
+ ScrollBar {
+ id: bottomSB
+ objectName: "bottomSB"
+ flick: ff
+ width: parent.width - height
+ anchors.bottom: parent.bottom
+ }
+
+ Rectangle {
+ id: cornerCover
+ color: "lightgray"
+ width: rightSB.width
+ height: bottomSB.height
+ anchors {
+ right: parent.right
+ bottom: parent.bottom
+ }
+ }
}