summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonatan Pålsson <jonatan.palsson@pelagicore.com>2014-02-25 11:31:55 +0100
committerJonatan Pålsson <jonatan.palsson@pelagicore.com>2014-02-25 11:31:55 +0100
commitebf6177c02eefc69e196f9879f9951d41c617479 (patch)
tree766139b90facdda8b792574e7e8803562dd8d3ba
parentf11360a93ca6c7878bbb8122aa2920f8457f11e1 (diff)
downloadbrowser-poc-ebf6177c02eefc69e196f9879f9951d41c617479.tar.gz
Added 'click' button
-rw-r--r--testapp/qml/testapp/WebPageWindow.qml14
1 files changed, 14 insertions, 0 deletions
diff --git a/testapp/qml/testapp/WebPageWindow.qml b/testapp/qml/testapp/WebPageWindow.qml
index b4966c9..001700e 100644
--- a/testapp/qml/testapp/WebPageWindow.qml
+++ b/testapp/qml/testapp/WebPageWindow.qml
@@ -393,6 +393,20 @@ Item {
anchors.top: scrolltype.bottom
anchors.left: scrolltype.left
}
+
+ Button {
+ id: buttonSelect
+ text: "Click"
+ anchors.top: buttonup.bottom
+ anchors.topMargin: 0
+ anchors.bottom: buttondown.top
+ anchors.bottomMargin: 0
+ anchors.right: buttonright.left
+ anchors.rightMargin: 0
+ anchors.left: buttonleft.right
+ anchors.leftMargin: 0
+ onClicked: browserinterface.select();
+ }
}
GroupBox {