summaryrefslogtreecommitdiffstats
path: root/examples/declarative/toys/tic-tac-toe/qml/tic-tac-toe/content/Button.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/toys/tic-tac-toe/qml/tic-tac-toe/content/Button.qml')
-rw-r--r--examples/declarative/toys/tic-tac-toe/qml/tic-tac-toe/content/Button.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/declarative/toys/tic-tac-toe/qml/tic-tac-toe/content/Button.qml b/examples/declarative/toys/tic-tac-toe/qml/tic-tac-toe/content/Button.qml
index ebf52e4d..5f4a34a6 100644
--- a/examples/declarative/toys/tic-tac-toe/qml/tic-tac-toe/content/Button.qml
+++ b/examples/declarative/toys/tic-tac-toe/qml/tic-tac-toe/content/Button.qml
@@ -49,7 +49,7 @@ Rectangle {
signal clicked
width: buttonLabel.width + 20; height: buttonLabel.height + 6
- border { width: 1; color: Qt.darker(container.color) }
+ border { width: 1; color: Qt.darker(container.color) }
radius: 8
color: "lightgray"
smooth: true
@@ -59,13 +59,13 @@ Rectangle {
position: 0.0
color: container.pressed ? "darkgray" : "white"
}
- GradientStop {
+ GradientStop {
position: 1.0
color: container.color
}
}
- MouseArea {
+ MouseArea {
anchors.fill: parent
onClicked: container.clicked()
}