aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/universal/Drawer.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2016-03-23 13:21:07 +0100
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2016-03-23 12:46:15 +0000
commitc5316d174728513859c8fe931803562777d57b4c (patch)
tree2e7a9edc619a67448af4b923c7f14dce9b720dd2 /src/imports/controls/universal/Drawer.qml
parent0dd8a34f3b454d516f75e9b4be7691f934d2e849 (diff)
Fix borders for top & bottom drawers
Change-Id: Ifeb927d7d3edde0b01b4ed666b6a19354171e605 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'src/imports/controls/universal/Drawer.qml')
-rw-r--r--src/imports/controls/universal/Drawer.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/imports/controls/universal/Drawer.qml b/src/imports/controls/universal/Drawer.qml
index 57dac6d7..ea974795 100644
--- a/src/imports/controls/universal/Drawer.qml
+++ b/src/imports/controls/universal/Drawer.qml
@@ -73,7 +73,7 @@ T.Drawer {
height: horizontal ? parent.height : 1
color: control.Universal.chromeHighColor
x: control.edge === Qt.LeftEdge ? parent.width - 1 : 0
- y: control.edge === Qt.BottomEdge ? parent.height - 1 : 0
+ y: control.edge === Qt.TopEdge ? parent.height - 1 : 0
}
}
//! [background]