summaryrefslogtreecommitdiffstats
path: root/tests/declarative-location/visual/shared-qml/ToolBar.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/declarative-location/visual/shared-qml/ToolBar.qml')
-rwxr-xr-xtests/declarative-location/visual/shared-qml/ToolBar.qml10
1 files changed, 8 insertions, 2 deletions
diff --git a/tests/declarative-location/visual/shared-qml/ToolBar.qml b/tests/declarative-location/visual/shared-qml/ToolBar.qml
index 0c0a9a2861..d04b81129e 100755
--- a/tests/declarative-location/visual/shared-qml/ToolBar.qml
+++ b/tests/declarative-location/visual/shared-qml/ToolBar.qml
@@ -50,6 +50,8 @@ Item {
signal button3Clicked
Rectangle {
id: button1
+ border.color: 'black'
+ border.width: 1
anchors.left: parent.left; y: 3; width: parent.width/3; height: 32
Text {id: button1Text; text: button1Label; color: "black"}
MouseArea {
@@ -59,7 +61,9 @@ Item {
}
Rectangle {
id: button2
- anchors.left: button1.right; anchors.leftMargin: 5; y: 3; width: parent.width/3 - anchors.leftMargin; height: 32
+ border.color: 'black'
+ border.width: 1
+ anchors.left: button1.right; y: 3; anchors.leftMargin: -1; width: parent.width/3 - anchors.leftMargin; height: 32
Text {id: button2Text; text: button2Label; color: "black"}
MouseArea {
anchors.fill: parent
@@ -68,7 +72,9 @@ Item {
}
Rectangle {
id: button3
- anchors.left: button2.right; anchors.leftMargin: 5; y: 3; width: parent.width/3 - anchors.leftMargin; height: 32
+ border.color: 'black'
+ border.width: 1
+ anchors.left: button2.right; anchors.leftMargin: -1; y: 3; width: parent.width/3 - anchors.leftMargin; height: 32
Text {id: button3Text; text: button3Label; color: "black"}
MouseArea {
anchors.fill: parent