aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/Drawer.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@qt.io>2016-11-01 15:07:51 +0100
committerJ-P Nurmi <jpnurmi@qt.io>2016-11-01 20:19:12 +0000
commit07ab335947b4a5cadb2fd1e440ca7db38b82ba1b (patch)
tree69d2d8ad351caa978c86c6bc1c9aedbd8425c584 /src/imports/controls/Drawer.qml
parent6f10ef6e167f4af68439f473842da3b5ea87e4a4 (diff)
Get rid of the remaining qdoc markers in the Default style
Change-Id: Id90911cbac46d2d68284abca08dc7165ace71113 Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'src/imports/controls/Drawer.qml')
-rw-r--r--src/imports/controls/Drawer.qml9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/imports/controls/Drawer.qml b/src/imports/controls/Drawer.qml
index 9791bf0c..6e9ab71f 100644
--- a/src/imports/controls/Drawer.qml
+++ b/src/imports/controls/Drawer.qml
@@ -53,19 +53,11 @@ T.Drawer {
rightPadding: control.edge === Qt.LeftEdge
bottomPadding: control.edge === Qt.TopEdge
- //! [enter]
enter: Transition { SmoothedAnimation { velocity: 5 } }
- //! [enter]
-
- //! [exit]
exit: Transition { SmoothedAnimation { velocity: 5 } }
- //! [exit]
- //! [contentItem]
contentItem: Item { }
- //! [contentItem]
- //! [background]
background: Rectangle {
Rectangle {
readonly property bool horizontal: control.edge === Qt.LeftEdge || control.edge === Qt.RightEdge
@@ -76,5 +68,4 @@ T.Drawer {
y: control.edge === Qt.TopEdge ? parent.height - 1 : 0
}
}
- //! [background]
}