diff options
Diffstat (limited to 'doc/src/snippets/declarative/mouseregion.qml')
| -rw-r--r-- | doc/src/snippets/declarative/mouseregion.qml | 14 | 
1 files changed, 11 insertions, 3 deletions
| diff --git a/doc/src/snippets/declarative/mouseregion.qml b/doc/src/snippets/declarative/mouseregion.qml index a464069..683770b 100644 --- a/doc/src/snippets/declarative/mouseregion.qml +++ b/doc/src/snippets/declarative/mouseregion.qml @@ -3,13 +3,21 @@ import Qt 4.7  Rectangle { width: 200; height: 100  Row {  //! [0] -Rectangle { width: 100; height: 100; color: "green" -    MouseArea { anchors.fill: parent; onClicked: { parent.color = 'red' } } +Rectangle {  +    width: 100; height: 100 +    color: "green" + +    MouseArea {  +        anchors.fill: parent +        onClicked: { parent.color = 'red' } +    }  }  //! [0]  //! [1]  Rectangle { -    width: 100; height: 100; color: "green" +    width: 100; height: 100 +    color: "green" +      MouseArea {          anchors.fill: parent          acceptedButtons: Qt.LeftButton | Qt.RightButton | 
